Initial commit
This commit is contained in:
commit
85e947acc8
1
pelican/plugins/obsidian/__init__.py
Normal file
1
pelican/plugins/obsidian/__init__.py
Normal file
|
@ -0,0 +1 @@
|
||||||
|
from .obsidian import * # noqa
|
27
pelican/plugins/obsidian/obsidian.py
Normal file
27
pelican/plugins/obsidian/obsidian.py
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
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, context):
|
||||||
|
"""
|
||||||
|
Modify the metadata
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
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)
|
57
pyproject.toml
Normal file
57
pyproject.toml
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
[project]
|
||||||
|
name = "pelican-obsidian"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "Makes pelican markdown files more compatible with Obsidian"
|
||||||
|
authors = [
|
||||||
|
"Jonathan Sundqvist <jonathan@argpar.se>"
|
||||||
|
]
|
||||||
|
license = "MIT"
|
||||||
|
readme = "README.md"
|
||||||
|
python = "^3.6"
|
||||||
|
homepage = "https://github.com/jonathan-s/pelican-obsidian"
|
||||||
|
repository = "https://github.com/jonathan-s/pelican-obsidian"
|
||||||
|
documentation = "https://github.com/jonathan-s/pelican-obsidian"
|
||||||
|
|
||||||
|
keywords = ["pelican", "obsidian", "plugin"]
|
||||||
|
|
||||||
|
classifiers = [
|
||||||
|
"Topic :: Software Development"
|
||||||
|
]
|
||||||
|
|
||||||
|
# Requirements
|
||||||
|
[dependencies]
|
||||||
|
pelican = "^4.5"
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
black = { version = "^18.3-alpha.0", python = "^3.6" }
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = [
|
||||||
|
"setuptools >= 35.0.2",
|
||||||
|
"setuptools_scm >= 2.0.0, <3"
|
||||||
|
]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
|
[tool.black]
|
||||||
|
line-length = 88
|
||||||
|
target_version = ['py36']
|
||||||
|
include = '\.pyi?$'
|
||||||
|
exclude = '''
|
||||||
|
|
||||||
|
(
|
||||||
|
/(
|
||||||
|
\.eggs # exclude a few common directories in the
|
||||||
|
| \.git # root of the project
|
||||||
|
| \.hg
|
||||||
|
| \.mypy_cache
|
||||||
|
| \.tox
|
||||||
|
| \.venv
|
||||||
|
| _build
|
||||||
|
| buck-out
|
||||||
|
| build
|
||||||
|
| dist
|
||||||
|
)/
|
||||||
|
| foo.py # also separately exclude a file named foo.py in
|
||||||
|
# the root of the project
|
||||||
|
)
|
||||||
|
'''
|
Loading…
Reference in New Issue
Block a user