diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-22 12:34:23 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-22 12:34:23 +0200 |
commit | 0fcfeaf05a95ea17763a72d91b6aa1c01843d067 (patch) | |
tree | 616d82b6e1d5a1164c8d6db110bc73c6b3583c13 /src/construct/code_text.rs | |
parent | 6a7462e031ccd5333628f232ba55ec27c8fda404 (diff) | |
download | markdown-rs-0fcfeaf05a95ea17763a72d91b6aa1c01843d067.tar.gz markdown-rs-0fcfeaf05a95ea17763a72d91b6aa1c01843d067.tar.bz2 markdown-rs-0fcfeaf05a95ea17763a72d91b6aa1c01843d067.zip |
Add docs for token types
Diffstat (limited to '')
-rw-r--r-- | src/construct/code_text.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/construct/code_text.rs b/src/construct/code_text.rs index 94e0106..70b3805 100644 --- a/src/construct/code_text.rs +++ b/src/construct/code_text.rs @@ -65,6 +65,13 @@ //! that the code is in, so it is recommended to use that instead of indented //! code. //! +//! ## Tokens +//! +//! * [`CodeText`][TokenType::CodeText] +//! * [`CodeTextData`][TokenType::CodeTextData] +//! * [`CodeTextSequence`][TokenType::CodeTextSequence] +//! * [`CodeTextLineEnding`][TokenType::CodeTextLineEnding] +//! //! ## References //! //! * [`code-text.js` in `micromark`](https://github.com/micromark/micromark/blob/main/packages/micromark-core-commonmark/dev/lib/code-text.js) |