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

Convert manual from Wiki to mld #951

Merged
merged 4 commits into from
May 2, 2024
Merged

Commits on Apr 15, 2024

  1. Convert manual from Wiki to mld

    This allows to view the manual offline. Converted with:
    
        sed -E \
            -e 's/^==== *(.*) *====/{3 \1}/g' \
            -e 's/^=== *(.*) *===/{2 \1}/g' \
            -e 's/^== *(.*) *==/{1 \1}/g' \
            -e 's/^= *(.*) *=/{0 \1}/g' \
            -e 's/\[\[(.*)\|(.*)]]/{{: \1 }\2}/g' \
            -e 's|//(.*)//|{e \1}|g' \
            -e 's/<<a_api text=".*" *\| module (.+)>>/in {!\1}/g' \
            -e 's/<<code language="ocaml" *\|/{[\n/g' \
            -e 's/<<code language="c" *\|/{@c[/g' \
            -e 's/>>/]}/g' \
            -e "s/\`\`(.*)''/“\1”/g" \
            -e 's/\.\.\./…/g' \
            "$@" | \
            perl -pe 's|{{{(.*?)}}}|[\1]|g'
    
    and then some manual fixes for lists and tables.
    MisterDA authored and smorimoto committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    042ee9f View commit details
    Browse the repository at this point in the history
  2. Update the manual

    MisterDA authored and smorimoto committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    c26b007 View commit details
    Browse the repository at this point in the history
  3. Use odoc tables

    MisterDA authored and smorimoto committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    a0c3020 View commit details
    Browse the repository at this point in the history
  4. Add dependency to odoc

    raphael-proust authored and smorimoto committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    b890e7d View commit details
    Browse the repository at this point in the history