Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a Rust implementation of the Perl preprocessing logic. #279

Merged
merged 30 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b4767de
Add a Rust implementation of the Perl preprocessing logic.
jeremyroman Jun 15, 2023
3db1b5f
Remove custom <ref> stuff
domenic Aug 6, 2023
8a18ae9
Apply cargo fix
domenic Aug 6, 2023
ac0b2ea
Change method name to avoid clippy suppression
domenic Aug 7, 2023
41d864f
Remove FilteredParser.
jeremyroman Aug 8, 2023
f89ca54
two comments from @domfarolino
jeremyroman Aug 23, 2023
3023f66
Add a Rust implementation of the Perl preprocessing logic.
jeremyroman Jun 15, 2023
8c0a8d4
Remove custom <ref> stuff
domenic Aug 6, 2023
19b6e8e
Apply cargo fix
domenic Aug 6, 2023
cff9c93
Change method name to avoid clippy suppression
domenic Aug 7, 2023
f4f7959
Remove FilteredParser.
jeremyroman Aug 8, 2023
9d3ad67
two comments from @domfarolino
jeremyroman Aug 23, 2023
d45608d
Update Docker stuff
domenic Aug 31, 2023
e9c5389
Better Dockerification
domenic Aug 31, 2023
b077027
Thanks shellcheck
domenic Aug 31, 2023
732cdc1
Build for release
domenic Aug 31, 2023
91fd569
warn on more than one copy of MARKER
jeremyroman Oct 16, 2023
6da2b82
only accept one marker for interface index
jeremyroman Oct 16, 2023
e2db792
Merge branch 'rust' of ssh://github.com/jeremyroman/html-build into rust
jeremyroman Oct 16, 2023
3694299
add a comment requested by domfarolino
jeremyroman Oct 16, 2023
3c5b2eb
error rather than ignore unsafe paths
jeremyroman Oct 16, 2023
cf304a0
make absolute and .. paths an error rather than ignored
jeremyroman Oct 16, 2023
401b997
io utils
jeremyroman Oct 17, 2023
e9f39c3
move heading_level into dom_utils
jeremyroman Oct 17, 2023
7b438db
format
jeremyroman Oct 17, 2023
4398c55
Cargo.toml fixups
domenic Oct 23, 2023
438f9ce
Invocation changes
domenic Oct 23, 2023
831cb06
Relesae is cargo install default apparently
domenic Oct 23, 2023
bd57b95
More Dockerfile tweaks
domenic Oct 23, 2023
9a81fd4
Merge branch 'main' into rust
domenic Oct 23, 2023
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
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
!*.pl
!build.sh
!lint.sh
!Cargo.lock
!Cargo.toml
!src
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ html/
output/
mdn/.id-list
mdn/developer.mozilla.org/
highlighter/


# Added by cargo

/target
Loading