highmark-yapp 2.0.35 → 2.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/example.js +151 -54
- package/lib/example/view/div/markdown.js +6 -3
- package/lib/example/view.js +5 -6
- package/lib/node/markdown/blockListing.js +10 -26
- package/package.json +2 -2
- package/src/example/view/div/markdown.js +7 -2
- package/src/example/view.js +9 -7
- package/src/node/markdown/blockListing.js +16 -2
package/README.md
CHANGED
|
@@ -109,7 +109,7 @@ This is why there are two utility functions to create the node in two stages.
|
|
|
109
109
|
By the way, the sibling DOM element, if not null, must be a child of the parent DOM element, in which case the node will be mounted immediately *before* it.
|
|
110
110
|
|
|
111
111
|
Note also that the usual delimiters for block listings consisting of three backticks have been replaced with three single quotes `'''`.
|
|
112
|
-
This generally makes things easier when working inside string template literals that use backticks for delimiters
|
|
112
|
+
This generally makes things easier when working inside string template literals that use backticks for delimiters.
|
|
113
113
|
|
|
114
114
|
## Building
|
|
115
115
|
|