Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
65fd48f
fix(stage3): support for line number in links
hardfau1t Jun 4, 2025
919a61e
fix(stage_3): support for generic links
hardfau1t Jun 4, 2025
2fa40d9
test(links): add extra tests for links
hardfau1t Jun 4, 2025
279aa44
test(links): add few more tests for links
hardfau1t Jul 17, 2025
eb2744c
test(links): adds workspace and line number link tests
hardfau1t Sep 3, 2025
fc64cd0
test(anchor): adds basic anchor tests
hardfau1t Sep 4, 2025
a84b908
build(cargo): insta switch to ron format
hardfau1t Sep 9, 2025
0ba7a0f
test(anchor): start using insta tests instead of raw unit tests
hardfau1t Sep 9, 2025
ab76e62
test(anchor_tests): add a single test runner for insta using an array
hardfau1t Sep 10, 2025
481c722
test(anchor_tests): add anchor test which links to a heading
hardfau1t Sep 10, 2025
6503a31
test(anchor): adads insta anchor tests
hardfau1t Sep 11, 2025
93863b6
ci(github): add format and clippy checks
hardfau1t Sep 11, 2025
f4a0e7d
chore(main): format with cargo fmt
hardfau1t Sep 11, 2025
d711199
ci(rust): cargo clippy command fixed
hardfau1t Sep 11, 2025
014f746
fix(stage3): remove dedup in para segment parser
hardfau1t Dec 3, 2025
3818dfe
refactor(lib): use flat ast_parser as input to tree parse
hardfau1t Dec 15, 2025
a510974
fix(stage_3): anchors and links inside attached modifiers are ignored
hardfau1t Dec 15, 2025
dcb8142
feat(examples): add dump_ast binary
hardfau1t Dec 15, 2025
1eef2ee
test(anchors): adds nested anchor test in an attached modifier
hardfau1t Dec 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: format check
run: cargo fmt --check
- name: clippy check
run: cargo clippy
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
Loading
Loading