diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-09-08 11:01:26 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-09-08 11:01:26 +0200 |
commit | 2d24336c61e88e364e63e36db7b0803bc6532159 (patch) | |
tree | 7da890523de1866e728aa3e6ae0e15f79d1eece2 /src/construct/mod.rs | |
parent | 674154f9053ff116bd551e6c3385ec98042bf396 (diff) | |
download | markdown-rs-2d24336c61e88e364e63e36db7b0803bc6532159.tar.gz markdown-rs-2d24336c61e88e364e63e36db7b0803bc6532159.tar.bz2 markdown-rs-2d24336c61e88e364e63e36db7b0803bc6532159.zip |
Refactor to move jsx parsing to partial
Diffstat (limited to 'src/construct/mod.rs')
-rw-r--r-- | src/construct/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/construct/mod.rs b/src/construct/mod.rs index d2843c3..7aaa3ee 100644 --- a/src/construct/mod.rs +++ b/src/construct/mod.rs @@ -71,6 +71,7 @@ //! * [data][partial_data] //! * [destination][partial_destination] //! * [label][partial_label] +//! * [jsx text][partial_mdx_jsx] //! * [non lazy continuation][partial_non_lazy_continuation] //! * [space or tab][partial_space_or_tab] //! * [space or tab, eol][partial_space_or_tab_eol] @@ -168,6 +169,7 @@ pub mod partial_bom; pub mod partial_data; pub mod partial_destination; pub mod partial_label; +pub mod partial_mdx_jsx; pub mod partial_non_lazy_continuation; pub mod partial_space_or_tab; pub mod partial_space_or_tab_eol; |