@@ -15,6 +15,21 @@ use std::collections::HashSet;
15
15
use tendril:: StrTendril ;
16
16
use tendril:: TendrilSink ;
17
17
18
+ #[ derive( Clone , Debug , Default ) ]
19
+ #[ non_exhaustive]
20
+ /// Parser options
21
+ pub struct ParseOptions {
22
+ /// Keep the content of `<template>` tags in place.
23
+ pub keep_templates : bool ,
24
+ }
25
+
26
+ impl ParseOptions {
27
+ pub fn keep_templates ( mut self , keep_templates : bool ) -> Self {
28
+ self . keep_templates = keep_templates;
29
+ self
30
+ }
31
+ }
32
+
18
33
/// Document represents an HTML document to be manipulated.
19
34
pub struct Document {
20
35
/// The document's dom tree.
@@ -25,6 +40,9 @@ pub struct Document {
25
40
26
41
/// The document's quirks mode.
27
42
pub quirks_mode : QuirksMode ,
43
+
44
+ /// Keep content of templates
45
+ pub keep_templates : bool ,
28
46
}
29
47
30
48
impl Default for Document {
@@ -33,6 +51,7 @@ impl Default for Document {
33
51
tree : Tree :: new ( NodeData :: Document ) ,
34
52
errors : vec ! [ ] ,
35
53
quirks_mode : tree_builder:: NoQuirks ,
54
+ keep_templates : false ,
36
55
}
37
56
}
38
57
}
@@ -60,6 +79,23 @@ impl Document {
60
79
pub fn root ( & self ) -> NodeRef < NodeData > {
61
80
self . tree . root ( )
62
81
}
82
+
83
+ /// Parse a document allowing to provide additional options
84
+ pub fn parse < S > ( options : ParseOptions , html : S ) -> Self
85
+ where
86
+ S : AsRef < str > ,
87
+ {
88
+ let ParseOptions { keep_templates } = options;
89
+
90
+ parse_document (
91
+ Document {
92
+ keep_templates,
93
+ ..Document :: default ( )
94
+ } ,
95
+ Default :: default ( ) ,
96
+ )
97
+ . one ( html. as_ref ( ) )
98
+ }
63
99
}
64
100
65
101
impl TreeSink for Document {
@@ -87,14 +123,19 @@ impl TreeSink for Document {
87
123
88
124
// Get a handle to a template's template contents. The tree builder promises this will never be called with
89
125
// something else than a template element.
126
+ // If templates are kept in place, return the actual node id.
90
127
fn get_template_contents ( & mut self , target : & NodeId ) -> NodeId {
91
- self . tree . query_node ( target, |node| match node. data {
92
- NodeData :: Element ( Element {
93
- template_contents : Some ( ref contents) ,
94
- ..
95
- } ) => contents. clone ( ) ,
96
- _ => panic ! ( "not a template element!" ) ,
97
- } )
128
+ if self . keep_templates {
129
+ target. clone ( )
130
+ } else {
131
+ self . tree . query_node ( target, |node| match node. data {
132
+ NodeData :: Element ( Element {
133
+ template_contents : Some ( ref contents) ,
134
+ ..
135
+ } ) => contents. clone ( ) ,
136
+ _ => panic ! ( "not a template element!" ) ,
137
+ } )
138
+ }
98
139
}
99
140
100
141
// Set the document's quirks mode.
@@ -126,7 +167,7 @@ impl TreeSink for Document {
126
167
attrs : Vec < Attribute > ,
127
168
flags : ElementFlags ,
128
169
) -> NodeId {
129
- let template_contents = if flags. template {
170
+ let template_contents = if ! self . keep_templates && flags. template {
130
171
Some ( self . tree . create_node ( NodeData :: Document ) )
131
172
} else {
132
173
None
@@ -282,6 +323,12 @@ impl TreeSink for Document {
282
323
}
283
324
}
284
325
326
+ impl Document {
327
+ pub fn get_node ( & self , id : & NodeId ) -> NodeData {
328
+ self . tree . query_node ( id, |node| node. data . clone ( ) )
329
+ }
330
+ }
331
+
285
332
#[ cfg( test) ]
286
333
mod tests {
287
334
use super :: * ;
0 commit comments