1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2025-02-11 16:13:00 +01:00

Formatting and documentation

This commit is contained in:
squidfunk 2018-06-18 10:14:10 +02:00
parent d6295e1385
commit 4d7f77e88b
3 changed files with 3 additions and 2 deletions

View File

@ -175,7 +175,7 @@
{% endblock %} {% endblock %}
</div> </div>
{% block scripts %} {% block scripts %}
<script src="{{ base_url }}/assets/javascripts/application.ef380b89.js"></script> <script src="{{ base_url }}/assets/javascripts/application.d0060b13.js"></script>
{% if lang.t("search.language") != "en" %} {% if lang.t("search.language") != "en" %}
{% set languages = lang.t("search.language").split(",") %} {% set languages = lang.t("search.language").split(",") %}
{% if languages | length and languages[0] != "" %} {% if languages | length and languages[0] != "" %}

View File

@ -361,11 +361,12 @@ $codehilite-whitespace: transparent;
// When pymdownx.superfences is enabled but codehilite is disabled, // When pymdownx.superfences is enabled but codehilite is disabled,
// pymdownx.highlight will be used. When this happens, the outer // pymdownx.highlight will be used. When this happens, the outer
// container and tables get these class names by default. // container and tables get this class names by default.
.highlight { .highlight {
@extend .codehilite; @extend .codehilite;
} }
// Same as above, but for code blocks with line numbers enabled
.highlighttable { .highlighttable {
@extend .codehilitetable; @extend .codehilitetable;
} }