flinker-markdown 1.1.5 → 1.1.6
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/dist/esm/md.js +1 -1
- package/package.json +1 -1
package/dist/esm/md.js
CHANGED
|
@@ -108,7 +108,7 @@ export class MDGrammar {
|
|
|
108
108
|
this.audio = new MDLineGrammarRule();
|
|
109
109
|
this.audio.matcher = [/\[audio:([^\]]+)\]/, '<audio controls src="$1"></audio>'];
|
|
110
110
|
this.video = new MDLineGrammarRule();
|
|
111
|
-
this.video.matcher = [/\[video:([^\]]+)\]/, '<video controls src="$1"></
|
|
111
|
+
this.video.matcher = [/\[video:([^\]]+)\]/, '<video controls src="$1"></video>'];
|
|
112
112
|
this.globalRule.childrenLineRules = [this.header, this.quote, this.alignCenter, this.alignRight, this.audio, this.video, this.stars, this.br, this.p];
|
|
113
113
|
//
|
|
114
114
|
// MULTILINE GRAMMAR RULES
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flinker-markdown",
|
|
3
3
|
"description": "Free TypeScript library for parsing markdown text (customisable, not standardized).",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.6",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/Dittner/FlinkerMD.git"
|