A file-based task manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix raw-URL test: parser requires trailing boundary

The body_candidates portion of test_property_candidate_queries used
`see <https://x.example>` — but the URL parser only finalizes a
`<...>` raw link when the closing `>` is followed by a boundary char,
which doesn't happen at end-of-string. Add trailing text so the URL is
recognized.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
src/workspace.rs
··· 2100 2100 let (_d, file, git) = setup_dual(); 2101 2101 for ws in [&file, &git] { 2102 2102 let t1 = ws 2103 - .new_task("a".into(), "see <https://x.example>".into()) 2103 + .new_task("a".into(), "see <https://x.example> end".into()) 2104 2104 .unwrap(); 2105 2105 let id1 = t1.id; 2106 2106 ws.push_task(t1).unwrap();