如何修改 docsify prismjs 代码块的字体大小?
How to modify font-size for docsify prismjs code blocks?
Docsify 使用 prismjs 进行语法高亮显示。我尝试在 index.html 中插入样式,但没有任何效果(我可以在 chrome 开发工具中修改字体大小)
尝试过类似的东西。
<style>
code[class="lang-python"] {
font-size: 0.5rem;
}
</style>
</head>
语法高亮的文档请看这里。我认为这应该只是与 prismjs 的直接交互,除非 docsify 在那里做其他事情。
https://docsify.js.org/#/language-highlight?id=language-highlighting
你可以使用
<style>
code[class="lang-python"] {
font-size: 0.5rem !important;
}
</style>
Docsify 使用 prismjs 进行语法高亮显示。我尝试在 index.html 中插入样式,但没有任何效果(我可以在 chrome 开发工具中修改字体大小)
尝试过类似的东西。
<style>
code[class="lang-python"] {
font-size: 0.5rem;
}
</style>
</head>
语法高亮的文档请看这里。我认为这应该只是与 prismjs 的直接交互,除非 docsify 在那里做其他事情。
https://docsify.js.org/#/language-highlight?id=language-highlighting
你可以使用
<style>
code[class="lang-python"] {
font-size: 0.5rem !important;
}
</style>