1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 11:28:23 +02:00

Simplified code block mounting

This commit is contained in:
squidfunk 2022-04-30 18:07:55 +02:00
parent bdb5ba5a3d
commit 1eeb8b7c0c
4 changed files with 6 additions and 8 deletions

View File

@ -214,7 +214,7 @@
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.9efd901c.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.ed9748b7.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script>
{% endfor %}

View File

@ -178,9 +178,7 @@ export function mountCodeBlock(
}
/* Handle code annotations */
const container = el.closest([
":not(td):not(.code) > .highlight"
].join(", "))
const container = el.closest(".highlight")
if (container instanceof HTMLElement) {
const list = findCandidateList(container)