hugo-theme-docport
hugo-theme-docport copied to clipboard
请问怎么在markdown文件中添加锚点呢?
请问怎么在markdown文件中添加锚点呢?
请问怎么在markdown文件中添加锚点呢?
$(document).ready(function () {
$("article section.page div.content").each(function () {
var line = 1; //start with number 1
$("p", this).each(function () {
//look for paragraph elements inside wrapper
$(this).prepend(
"<a name='p" +
line +
"' href='#p" +
line +
"' style='font-size: 50%;'>[p" +
line +
"]</a>"
); //add class with line number
line++;
});
});
放在 head.html