You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
759 B

3 years ago
from pelican import signals
3 years ago
def pre_taxonomy(article_generator):
"""
Modify the tags of the article
"""
pass
def modify_article_content(article_generator, content):
"""
Change the format of various links to the accepted case of pelican.
"""
pass
def modify_metadata(article_generator, metadata):
3 years ago
"""
Modify the tags so we can define the tags as we are used to in obsidian.
3 years ago
"""
for tag in metadata['tags']:
if '#' in tag.name:
tag.name = tag.name.replace('#', '')
3 years ago
def register():
signals.article_generator_context.connect(modify_metadata)
signals.article_generator_pretaxonomy.connect(pre_taxonomy)
signals.article_generator_write_article.connect(modify_article_content)