Initial commit

main
Jonathan Sundqvist 3 years ago
commit 85e947acc8
  1. 1
      pelican/plugins/obsidian/__init__.py
  2. 27
      pelican/plugins/obsidian/obsidian.py
  3. 57
      pyproject.toml
  4. 3
      setup.py

@ -0,0 +1 @@
from .obsidian import * # noqa

@ -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)

@ -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
)
'''

@ -0,0 +1,3 @@
# setup.py
from setuptools import setup
setup(use_scm_version=True)
Loading…
Cancel
Save