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 --must-match-regex "TODO|DONE" --bulletpoint-max-level 2 input.md output.md

# Full options
MdXLogseqTODOSync \
    --input-delim-start "- BEGIN_TODO" \
    --input-delim-end "- END_TODO" \
    --output-delim-start "<!-- BEGIN_TODO -->" \
    --output-delim-end "<!-- END_TODO -->" \
    --must-match-regex "TODO|DONE" \
    --bulletpoint-max-level 2 \
    --sub-pattern '(\s*)- (TODO|DONE|DOING|NOW|LATER) ' '\\1- ' \
    --remove-block-properties \
    --keep-new-lines \
    --recursive \
    input.md output.md

Configuration Options

  • input_file: Path or string pointing to the input Markdown/Logseq file
  • output_file: Path or string pointing to the output Markdown/Logseq file
  • input_delim_start: Regex pattern to match the start of input section. Use "START" for beginning of file (default: "- BEGIN_TODO")
  • input_delim_end: Regex pattern to match the end of input section. Use "END" for end of file (default: "- END_TODO")
  • output_delim_start: Regex pattern to match the start of output section (default: "<!-- BEGIN_TODO -->")
  • output_delim_end: Regex pattern to match the end of output section (default: "<!-- END_TODO -->")
  • bulletpoint_max_level: Maximum level of bullet points to process. Use -1 for unlimited
  • must_match_regex: Regex pattern that lines must match to be included (default: r"\s*- (TODO|DONE|DOING|NOW|LATER|#+) ")
  • sub_pattern: Optional tuple of (search pattern, replace pattern) to modify matched lines (default: (r"(\s*)- (TODO|DONE|DOING|NOW|LATER) ", r"\1- "))
  • remove_block_properties: If True, removes Logseq block properties (default: True)
  • keep_new_lines: If True, preserves newlines from Logseq (default: True)
  • recursive: If True, processes nested TODO items under a matching parent (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.14.tar.gz (19.1 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.14-py3-none-any.whl (19.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mdxlogseqtodosync-0.0.14.tar.gz
  • Upload date:
  • Size: 19.1 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.14.tar.gz
Algorithm Hash digest
SHA256 0eceae1eabf0e8b9db840d955be0fb37c3fcb958dd551ac7adc8d326ac70c679
MD5 e2e80cfc10981313334fbfc8bc30f6d4
BLAKE2b-256 3ecf0fe0be3afe7feacea18af1371f3b0e2f7386d624fe244cdc371ef4aa335d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MdXLogseqTODOSync-0.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 5d99e2538568bb99615661b0178fe8a883b6204f24460a11ce75b730fde08ef8
MD5 587e9b2d44481fc3ea7d402d91f9b493
BLAKE2b-256 bedbbd43642e04b57e52d388c17598d9670f70f2c80e0e39ad724931f29edbcb

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