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

Update spec to 0.30 #266

Merged
merged 8 commits into from
May 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ formats. In addition to the library, a command-line tool `omd` is included to
easily convert markdown into HTML.

Omd aims at implementing the [Commonmark](https://commonmark.org/) standard. The
version currently targeted is [0.29](https://spec.commonmark.org/0.29/).
version currently targeted is [0.30](https://spec.commonmark.org/0.30/).

Omd is developed on GitHub. If you need to report an issue, please do so at
https://github.com/ocaml/omd/issues.
Expand Down
36 changes: 29 additions & 7 deletions tests/dune.inc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/extract_tests.ml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let protect ~finally f =
r

let disabled =
[ 175; 184; 185; 410; 411; 414; 415; 416; 428; 468; 469; 516; 536 ]
[ 028; 171; 206; 215; 216; 410; 411; 414; 415; 416; 428; 468; 469; 519; 539 ]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a comment in passing: Sad to see this list getting longer, tho #269 should knock id down some. And hopefully we can reduce the others in followups. Tho I think we should keep in mind whether the difficulty of squashing these bugs indicates a need to do a deeper refactor of the parser.


let with_open_in fn f =
let ic = open_in fn in
Expand Down
Loading