math-in-rust-doc 0.1.0

Demo of add math to rust doc
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 529.48 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.92 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • drmingdrmer/math-in-rust-doc
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • drmingdrmer

Add math to rust doc, e.g., docs.rs

This repo shows how to add latex math to https://docs.rs; Math is rendered by katex.

How it works

It embeds a piece of html into the rust doc that contains a javascript snippet rendering latex math.

Usage

  • To build doc with math locally: make Or: RUSTDOCFLAGS="--html-in-header katex.html" cargo doc --no-deps

  • To build doc with math for docs.rs, add the following lines to Cargo.toml:

    [package.metadata.docs.rs]
    rustdoc-args = [ "--html-in-header", "katex.html" ]
    

Rendering options

This repo provides two snippet for rendering:

  • katex.html renders $`i+1`$ into inline math, and math code block such into math block:

    ```math
    i+1
    ```
    
  • katex-dollar.html renders $i+1$ into inline math, and $$i+1$$ into block math.

Each of these two files is about 257 KB in size. And non-packed versions are *-src.html.