diff options
| author | 2022-09-26 16:12:25 +0200 | |
|---|---|---|
| committer | 2022-09-26 16:12:25 +0200 | |
| commit | a0c84c505d733be2e987a333a34244c1befb56cb (patch) | |
| tree | 0545a747b6f2f627a71bd31949ad622bbc56c176 /src/util/constant.rs | |
| parent | 9cb9e37c33173c16cbafd345f43e43b5a550537d (diff) | |
| download | markdown-rs-a0c84c505d733be2e987a333a34244c1befb56cb.tar.gz markdown-rs-a0c84c505d733be2e987a333a34244c1befb56cb.tar.bz2 markdown-rs-a0c84c505d733be2e987a333a34244c1befb56cb.zip | |
Add support for compiling to mdast
See: <https://github.com/syntax-tree/mdast>.
Diffstat (limited to 'src/util/constant.rs')
| -rw-r--r-- | src/util/constant.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/util/constant.rs b/src/util/constant.rs index a9a7895..e9deac2 100644 --- a/src/util/constant.rs +++ b/src/util/constant.rs @@ -2442,13 +2442,13 @@ mod tests {      fn constants() {          assert_eq!(              CHARACTER_REFERENCE_DECIMAL_SIZE_MAX, -            format!("{}", 0x10ffff).len(), +            format!("{}", 0x0010_ffff).len(),              "`CHARACTER_REFERENCE_DECIMAL_SIZE_MAX`"          );          assert_eq!(              CHARACTER_REFERENCE_HEXADECIMAL_SIZE_MAX, -            format!("{:x}", 0x10ffff).len(), +            format!("{:x}", 0x0010_ffff).len(),              "`CHARACTER_REFERENCE_HEXADECIMAL_SIZE_MAX`"          ); | 
