Skip to main content

Script to always sync a Logseq TODO list with a markdown file

Project description

MdXLogseqTODOSync

A Python tool to synchronize TODO items between Markdown and Logseq files. It allows you to maintain TODO lists across different markdown formats while respecting delimiters and filtering based on patterns and bullet point levels.

I made this so that updating my logseq graph's TODOs about a given repository would update the README.md of said repository.

Features

  • Synchronize TODO items between different markdown files
  • Configurable delimiters to mark sync boundaries
  • Filter content based on regular expression patterns
  • Control maximum bullet point depth
  • Preserves formatting and indentation
  • Type-safe implementation with beartype

Getting started

  • From pypi:
    • As a tool: uvx MdXLogseqTODOSync@latest --help
    • Via uv: uv pip install MdXLogseqTODOSync
    • Via pip: pip install MdXLogseqTODOSync
  • From github:
    • Clone this repo then pip install .

Usage

The tool is primarily used from the command line:

mdxlogseqtodosync --help

# Basic usage
mdxlogseqtodosync input.md output.md

# With filtering options
mdxlogseqtodosync --pattern "TODO|DONE" --max-level 2 input.md output.md

# Full options
mdxlogseqtodosync \
    --input-start "- BEGIN_TODO" \
    --input-end "- END_TODO" \
    --output-start "<!-- BEGIN_TODO -->" \
    --output-end "<!-- END_TODO -->" \
    --pattern "TODO|DONE" \
    --max-level 2 \
    --remove-pattern false \
    --remove-block-properties true \
    --keep-new-lines true \
    --recursive true \
    input.md output.md

Configuration Options

  • input_file: Source markdown file path
  • output_file: Destination markdown file path
  • input_delim_start: Start delimiter pattern for input file (default: "- BEGIN_TODO")
  • input_delim_end: End delimiter pattern for input file (default: "- END_TODO")
  • output_delim_start: Start delimiter for output file (default: "<!-- BEGIN_TODO -->")
  • output_delim_end: End delimiter for output file (default: "<!-- END_TODO -->")
  • bulletpoint_max_level: Maximum bullet point level to process (-1 for unlimited)
  • required_pattern: Regex pattern that lines must match to be included. Default is r"(TODO|DONE|DOING|NOW|LATER)"
  • remove_pattern: Boolean to control whether the required pattern is removed from matched lines (default: True)
  • remove_block_properties: Boolean to control whether Logseq block properties are removed (default: True)
  • keep_new_lines: Boolean to control whether empty lines are preserved (default: True)
  • recursive: Boolean to control whether nested TODOs under a matching parent are included (default: True)

File Format

Input file example:

Some content...

- BEGIN_TODO
- TODO Review pull request
  - DONE Update tests
  - TODO Add documentation
- END_TODO

More content...

Output file example:

# Project TODOs

<!-- BEGIN_TODO -->
- TODO Review pull request
  - DONE Update tests
  - TODO Add documentation
<!-- END_TODO -->

Error Handling

The tool includes robust error checking for:

  • Missing or duplicate delimiters
  • Non-existent input files
  • Empty or invalid content blocks
  • Invalid regex patterns

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

See LICENSE.md file for details.

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

mdxlogseqtodosync-0.0.12.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

MdXLogseqTODOSync-0.0.12-py3-none-any.whl (19.0 kB view details)

Uploaded Python 3

File details

Details for the file mdxlogseqtodosync-0.0.12.tar.gz.

File metadata

  • Download URL: mdxlogseqtodosync-0.0.12.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.20

File hashes

Hashes for mdxlogseqtodosync-0.0.12.tar.gz
Algorithm Hash digest
SHA256 ec2042b16348e092a622057d0e08859a9bf6944bdb31576630aeb7c44c809230
MD5 9f814411fd99bc843ca304813e0cd597
BLAKE2b-256 22ee07d095438686d3a6217e5910f67cccc1c0165a1ff21868cdddf11ebdb88c

See more details on using hashes here.

File details

Details for the file MdXLogseqTODOSync-0.0.12-py3-none-any.whl.

File metadata

File hashes

Hashes for MdXLogseqTODOSync-0.0.12-py3-none-any.whl
Algorithm Hash digest
SHA256 5a567a7f6e08f0297aacb508c3f751fd2d650a4a55e70d8c6f6a52f9351fd6bf
MD5 f903c9050bb5e5a83ab2f3e96b8ce96e
BLAKE2b-256 80317f6d0cb9a168cb926f3caeede6874b1011eb764fdd80acab55ba46d4dc64

See more details on using hashes here.

Supported by

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