Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b5f01f0
Add markdown alias and dune rules
davesnx Aug 1, 2025
4998400
Add more tests
davesnx Sep 5, 2025
e2e04ac
Merge branch 'main' of github.com:/ocaml/dune into markdown-for-odoc
davesnx Sep 5, 2025
ccbb690
Have files already there, do not create them
davesnx Sep 5, 2025
623425f
Add debuging
davesnx Sep 5, 2025
90b7cc9
Revert logging 623425f6e3f92158ca5c5b5cfea1e5242c73f1e6
davesnx Sep 19, 2025
463b7b8
Capitaliza basename on markdown
davesnx Sep 19, 2025
9e0eb9b
setup lib markdown rules definition
davesnx Sep 19, 2025
1450c5e
Remove commented generate_all
davesnx Sep 19, 2025
00fb782
Merge branch 'main' of github.com:/ocaml/dune into markdown-for-odoc
davesnx Oct 14, 2025
c4b6839
Consider directory targets for markdown
davesnx Oct 14, 2025
4c83d4e
Link with the markdown path
davesnx Oct 14, 2025
53a22e8
Add logging into gen_project_rules
davesnx Oct 15, 2025
0cc9679
Include subdirs
davesnx Oct 15, 2025
47fb0b5
Create bash to unify directory targets unique
davesnx Oct 15, 2025
0ae18bd
Improve documentation for the single action for packages
davesnx Oct 15, 2025
5431ccd
Enable version check for odoc
davesnx Oct 15, 2025
b2fe8d3
Refactor and add extensive test
davesnx Oct 15, 2025
556330d
Format dune_rules/odoc
davesnx Oct 15, 2025
ea3c270
Add debuging
davesnx Oct 15, 2025
dad4ff2
Remove logging
davesnx Oct 15, 2025
2a4775e
Abstract shell and format_alias
davesnx Oct 15, 2025
6cb8e89
Assume there's a markddown-generate that accepts multiple paths
davesnx Oct 15, 2025
33b944f
Format dune_rules/odoc
davesnx Oct 22, 2025
6de23b3
Merge branch 'main' of github.com:/ocaml/dune into markdown-for-odoc-…
davesnx Oct 22, 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
1 change: 1 addition & 0 deletions src/dune_rules/alias0.ml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ let lint = standard "lint"
let private_doc = standard "doc-private"
let doc = standard "doc"
let doc_json = standard "doc-json"
let doc_markdown = standard "doc-markdown"
let doc_new = standard "doc-new"
let check = standard "check"
let install = standard "install"
Expand Down
1 change: 1 addition & 0 deletions src/dune_rules/alias0.mli
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module Name := Dune_engine.Alias.Name
val fmt : Name.t
val doc : Name.t
val doc_json : Name.t
val doc_markdown : Name.t
val lint : Name.t
val private_doc : Name.t
val doc_new : Name.t
Expand Down
Loading
Loading