Add links to titles
This commit is contained in:
parent
cd284d43cc
commit
8b32e2e9a4
2 changed files with 7 additions and 0 deletions
|
@ -40,3 +40,8 @@ a.tag:not(:first-of-type):before {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
padding: 8px 16px;
|
padding: 8px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.toclink {
|
||||||
|
color: var(--nc-tx-1);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ import markdown
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from markdown.extensions.codehilite import CodeHiliteExtension
|
from markdown.extensions.codehilite import CodeHiliteExtension
|
||||||
|
from markdown.extensions.toc import TocExtension
|
||||||
|
|
||||||
from articles.markdown import LazyLoadingImageExtension
|
from articles.markdown import LazyLoadingImageExtension
|
||||||
|
|
||||||
|
@ -20,6 +21,7 @@ def format_article_content(content):
|
||||||
extensions=[
|
extensions=[
|
||||||
"extra",
|
"extra",
|
||||||
"admonition",
|
"admonition",
|
||||||
|
TocExtension(anchorlink=True),
|
||||||
CodeHiliteExtension(linenums=False, guess_lang=False),
|
CodeHiliteExtension(linenums=False, guess_lang=False),
|
||||||
LazyLoadingImageExtension(),
|
LazyLoadingImageExtension(),
|
||||||
]
|
]
|
||||||
|
|
Reference in a new issue