summaryrefslogtreecommitdiff
path: root/library/src/math/accent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/math/accent.rs')
-rw-r--r--library/src/math/accent.rs29
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>&DiacriticalGrave;</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