Skip to content

Commit 98e6f14

Browse files
committed
Update hoedown.
1 parent 8a0aab1 commit 98e6f14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/librustdoc/html/markdown.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ pub struct Markdown<'a>(pub &'a str);
4949
pub struct MarkdownWithToc<'a>(pub &'a str);
5050

5151
static DEF_OUNIT: libc::size_t = 64;
52-
static HOEDOWN_EXT_NO_INTRA_EMPHASIS: libc::c_uint = 1 << 10;
52+
static HOEDOWN_EXT_NO_INTRA_EMPHASIS: libc::c_uint = 1 << 11;
5353
static HOEDOWN_EXT_TABLES: libc::c_uint = 1 << 0;
5454
static HOEDOWN_EXT_FENCED_CODE: libc::c_uint = 1 << 1;
5555
static HOEDOWN_EXT_AUTOLINK: libc::c_uint = 1 << 3;
5656
static HOEDOWN_EXT_STRIKETHROUGH: libc::c_uint = 1 << 4;
5757
static HOEDOWN_EXT_SUPERSCRIPT: libc::c_uint = 1 << 8;
5858
static HOEDOWN_EXT_FOOTNOTES: libc::c_uint = 1 << 2;
59-
static HOEDOWN_EXT_MATH: libc::c_uint = 1 << 13;
59+
static HOEDOWN_EXT_MATH: libc::c_uint = 1 << 9;
6060

6161
static HOEDOWN_EXTENSIONS: libc::c_uint =
6262
HOEDOWN_EXT_NO_INTRA_EMPHASIS | HOEDOWN_EXT_TABLES |

0 commit comments

Comments
 (0)