d1conv
2023-11-24
Add list and quote parsers, web UI, GPT helpers, and reorganize test data
34 files · 137,271+ · 6,157-
New parser modules for lists and quotes
2 files changed
parse_list.pyNew dedicated list parser handling ordered and unordered lists with indentation trackingparse_quote.pyNew blockquote parser with Markdown angle-bracket formatting
- Added dedicated parse_list.py and parse_quote.py modules, completing the sub-parser architecture for all major Day One content types
instantiate
architectural
2 files
parse_list.pyparse_quote.py
Web UI and GPT experiment scripts
4 files changed
index.jsFull web UI for browsing and testing parser outputjson-object2.pyGPT experiment script for JSON object processingjson-processor.pyGPT experiment script for general JSON processinggpt-test1.pyGPT API test script
- Added a complete web UI for browsing parser output and GPT experiment scripts exploring AI-assisted JSON processing
instantiate
behavioral
2 files
index.jsgpt-test1.py
Test data reorganization
2 files changed
Journal-content.jsonMoved test data into date-stamped directoryoutput.mdReference match output for comparison
Parser improvements
4 files changed
parse.pyUpdated orchestration for new list and quote modulesparse_content.pyExtensive content parser improvements for list and quote integrationparse_code.pyMinor code block parser updatesparse_header.pyMinor header parser adjustment
- Updated parse.py orchestration and parse_content.py to integrate new list and quote sub-parsers
decouple
behavioral
2 files
parse.pyparse_content.py