PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / vendor / masterminds / html5 / src / HTML5 / Serializer / README.md
ameliabooking / vendor / masterminds / html5 / src / HTML5 / Serializer Last commit date
HTML5Entities.php 1 year ago OutputRules.php 1 year ago README.md 1 year ago RulesInterface.php 1 year ago Traverser.php 1 year ago
README.md
33 lines
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.