Skip to main content

Managing Markup Files

Project description

Bibliothek

Build Status codecov

🏛 Managing Markup Files

Example

from typing import Tuple

from bibliothek.toc import ToC, Note

t = ToC(base='path/to/dir', file_pattern=r'^.+\.md')

@t.on_sort('path', 'to')
def _(note: Note):
    return note['created date']

@t.on_sort('path')
def _(note: Note):
    return note['last updated date']

@t.before_generate
def _() -> str:
    return '# ToC'

@t.after_generate
def _() -> str:
    return '_Generate by Bibliothek_'

@t.before_dir
def _(curr_dir: Tuple[str]) -> str:
    return f'## {curr_dir[-1]}' if len(curr_dir) > 0 else None

@t.after_dir
def _(curr_dir: Tuple[str]) -> str:
    return '\n'

@t.on_note
def _(note: Note) -> str:
    # path would be inserted into front matter and auto escaped
    return f'- [{note["title"]}]({note["path"]})'

print(t)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bibliothek-0.1.3.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

bibliothek-0.1.3-py3-none-any.whl (18.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page