From 2d24336c61e88e364e63e36db7b0803bc6532159 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 8 Sep 2022 11:01:26 +0200 Subject: Refactor to move jsx parsing to partial --- src/construct/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/construct/mod.rs') 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; -- cgit