diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-25 19:01:34 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-25 19:01:34 +0200 |
commit | bfe2f86e99b5528c636cc4002ce10e9af06de0c0 (patch) | |
tree | 2b9f7b13d8cc9d693423b0fa225be853cd5a125e /src/util | |
parent | 8b41cfabde848b24fdae65d09ad961c2412e023b (diff) | |
download | markdown-rs-bfe2f86e99b5528c636cc4002ce10e9af06de0c0.tar.gz markdown-rs-bfe2f86e99b5528c636cc4002ce10e9af06de0c0.tar.bz2 markdown-rs-bfe2f86e99b5528c636cc4002ce10e9af06de0c0.zip |
Fix dead links in docs
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/mdx.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/mdx.rs b/src/util/mdx.rs index 712b2c7..882f3f5 100644 --- a/src/util/mdx.rs +++ b/src/util/mdx.rs @@ -44,7 +44,8 @@ pub enum Signal { /// Signature of a function that parses MDX ESM. /// -/// Can be passed as `mdx_esm_parse` in [`ParseOptions`][] to support +/// Can be passed as `mdx_esm_parse` in +/// [`ParseOptions`][crate::configuration::ParseOptions] to support /// ESM according to a certain grammar (typically, a programming language). pub type EsmParse = dyn Fn(&str) -> Signal; @@ -79,7 +80,8 @@ pub enum ExpressionKind { /// Signature of a function that parses MDX expressions. /// -/// Can be passed as `mdx_expression_parse` in [`ParseOptions`][] to support +/// Can be passed as `mdx_expression_parse` in +/// [`ParseOptions`][crate::configuration::ParseOptions] to support /// expressions according to a certain grammar (typically, a programming /// language). /// |