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
- As a tool:
- From github:
- Clone this repo then
pip install .
- Clone this repo then
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 fileoutput_file: Path or string pointing to the output Markdown/Logseq fileinput_delim_start: Regex pattern to match the start of input section. Use "START" for beginning of file. Default:"__START__"input_delim_end: Regex pattern to match the end of input section. Use "END" for end of file. Default:"__END__"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. Default:-1must_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:Truekeep_new_lines: If True, preserves newlines from Logseq. Default:Truerecursive: 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mdxlogseqtodosync-0.1.0.tar.gz.
File metadata
- Download URL: mdxlogseqtodosync-0.1.0.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22fd71f917d034a8cac63d4d83b0efe4301a77037e179bbaba0faa8a459d11c3
|
|
| MD5 |
c3d15f6b4dd07fbb1b7ad9297372738f
|
|
| BLAKE2b-256 |
9ea282f2bdb6464967edad2a071233db016fc8129efb35e9252dbf7ff9e515d9
|
File details
Details for the file MdXLogseqTODOSync-0.1.0-py3-none-any.whl.
File metadata
- Download URL: MdXLogseqTODOSync-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a585ae699c361fbbe16622bfca61c52e37b2744e42edcb977b1c71df64736d
|
|
| MD5 |
d504ddfc13880998be2a258b8912f09f
|
|
| BLAKE2b-256 |
84b85db43aebb4c2428bacb4d58600840fd7c039e5013b0f42347c652856238b
|