File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ pub fn add(md: &mut MarkdownIt) {
2828}
2929
3030#[ derive( Debug ) ]
31- struct DefinitionList ;
31+ pub struct DefinitionList ;
3232impl NodeValue for DefinitionList {
3333 fn render ( & self , node : & Node , fmt : & mut dyn Renderer ) {
3434 fmt. cr ( ) ;
@@ -42,7 +42,7 @@ impl NodeValue for DefinitionList {
4242}
4343
4444#[ derive( Debug ) ]
45- struct DefinitionTerm ;
45+ pub struct DefinitionTerm ;
4646impl NodeValue for DefinitionTerm {
4747 fn render ( & self , node : & Node , fmt : & mut dyn Renderer ) {
4848 fmt. cr ( ) ;
@@ -54,7 +54,7 @@ impl NodeValue for DefinitionTerm {
5454}
5555
5656#[ derive( Debug ) ]
57- struct DefinitionDescription ;
57+ pub struct DefinitionDescription ;
5858impl NodeValue for DefinitionDescription {
5959 fn render ( & self , node : & Node , fmt : & mut dyn Renderer ) {
6060 fmt. cr ( ) ;
@@ -66,7 +66,7 @@ impl NodeValue for DefinitionDescription {
6666}
6767
6868/// An extension for the block subparser.
69- struct DefinitionListScanner ;
69+ pub struct DefinitionListScanner ;
7070
7171impl BlockRule for DefinitionListScanner {
7272 fn check ( state : & mut BlockState ) -> Option < ( ) > {
You can’t perform that action at this time.
0 commit comments