diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-15 12:34:23 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-15 12:36:36 +0200 |
commit | 66c70d1b917976c32b770e5d724fc4e47a2309c6 (patch) | |
tree | faac63df2b0687d15f7de556d765f6c93a3d7dd1 /src/constant.rs | |
parent | 21dbf42b5e5979fb30837bbb3b2638dcf5711249 (diff) | |
download | markdown-rs-66c70d1b917976c32b770e5d724fc4e47a2309c6.tar.gz markdown-rs-66c70d1b917976c32b770e5d724fc4e47a2309c6.tar.bz2 markdown-rs-66c70d1b917976c32b770e5d724fc4e47a2309c6.zip |
Refactor to sort, document lists in token
Diffstat (limited to 'src/constant.rs')
-rw-r--r-- | src/constant.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/constant.rs b/src/constant.rs index 2c74083..a5ace28 100644 --- a/src/constant.rs +++ b/src/constant.rs @@ -193,7 +193,6 @@ pub const HTML_RAW_SIZE_MAX: usize = 8; /// To safeguard performance, labels are capped at a large number: `999`. pub const LINK_REFERENCE_SIZE_MAX: usize = 999; - /// The max number of decimals allowed to form an (ordered) [list][] item. /// /// `CommonMark` caps this at 10 digits (9 is fine, 10 not). |