Files
pelican-obsidian/pelican/plugins/obsidian/obsidian.py
T
Jonathan Sundqvist 28eeacbba4 Remove # in tag names
2021-07-03 13:41:04 +02:00

32 lines
759 B
Python

from pelican import signals
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):
"""
Modify the tags so we can define the tags as we are used to in obsidian.
"""
for tag in metadata['tags']:
if '#' in tag.name:
tag.name = tag.name.replace('#', '')
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)