diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-01-29 23:15:00 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-01-29 23:15:00 +0100 |
| commit | 196d9594fbb88985dbf61c146a82b8299bb5fd2e (patch) | |
| tree | ac60b464cefcce93b111067e189becd0873e7165 /library/src/math/accent.rs | |
| parent | d9d2c021d62abb4fe6d12b994334bd211e462cde (diff) | |
Math documentation improvements
Diffstat (limited to 'library/src/math/accent.rs')
| -rw-r--r-- | library/src/math/accent.rs | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/library/src/math/accent.rs b/library/src/math/accent.rs index fdb59c5c..9183b93b 100644 --- a/library/src/math/accent.rs +++ b/library/src/math/accent.rs @@ -29,19 +29,22 @@ const ACCENT_SHORT_FALL: Em = Em::new(0.5); /// The accent to apply to the base. /// /// Supported accents include: -/// - Grave: `grave`, `` ` `` -/// - Acute: `acute`, `´` -/// - Circumflex: `circum`, `^` -/// - Tilde: `tilde`, `~` -/// - Macron: `macron`, `¯` -/// - Breve: `breve`, `˘` -/// - Dot: `dot`, `.` -/// - Diaeresis: `diaer` `¨` -/// - Circle: `circle`, `∘` -/// - Double acute: `acute.double`, `˝` -/// - Caron: `caron`, `ˇ` -/// - Right arrow: `arrow`, `->` -/// - Left arrow: `arrow.l`, `<-` +/// +/// | Accent | Name | Codepoint | +/// | ------------ | --------------- | --------- | +/// | Grave | `grave` | <code>`</code> | +/// | Acute | `acute` | `´` | +/// | Circumflex | `circum` | `^` | +/// | Tilde | `tilde` | `~` | +/// | Macron | `macron` | `¯` | +/// | Breve | `breve` | `˘` | +/// | Dot | `dot` | `.` | +/// | Diaeresis | `diaer` | `¨` | +/// | Circle | `circle` | `∘` | +/// | Double acute | `acute.double` | `˝` | +/// | Caron | `caron` | `ˇ` | +/// | Right arrow | `arrow`, `->` | `→` | +/// | Left arrow | `arrow.l`, `<-` | `←` | /// /// ## Category /// math |
