PluginProbe
WindPress – Tailwind CSS integration for WordPress / 3.0.13
WindPress – Tailwind CSS integration for WordPress v3.0.13
3.2.89 3.2.88 3.2.87 3.2.86 3.2.85 3.2.84 3.2.83 3.2.82 3.2.81 trunk 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.17 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 All 143 releases
windpress / vendor / masterminds / html5 / src / HTML5 / Serializer / README.md

README.md in WindPress – Tailwind CSS integration for WordPress 3.0.13, at vendor/masterminds/html5/src/HTML5/Serializer/README.md

33 lines 929 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 # The Serializer (Writer) Model
2
3 The serializer roughly follows sections _8.1 Writing HTML documents_ and section
4 _8.3 Serializing HTML fragments_ by converting DOMDocument, DOMDocumentFragment,
5 and DOMNodeList into HTML5.
6
7 [ HTML5 ] // Interface for saving.
8 ||
9 [ Traverser ] // Walk the DOM
10 ||
11 [ Rules ] // Convert DOM elements into strings.
12 ||
13 [ HTML5 ] // HTML5 document or fragment in text.
14
15
16 ## HTML5 Class
17
18 Provides the top level interface for saving.
19
20 ## The Traverser
21
22 Walks the DOM finding each element and passing it off to the output rules to
23 convert to HTML5.
24
25 ## Output Rules
26
27 The output rules are defined in the RulesInterface which can have multiple
28 implementations. Currently, the OutputRules is the default implementation that
29 converts a DOM as is into HTML5.
30
31 ## HTML5 String
32
33 The output of the process it HTML5 as a string or saved to a file.