mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-04 17:56:56 +00:00
feat: ast to use new widget type void
This commit is contained in:
parent
5b2c3dbace
commit
7bc408b3b0
@ -55,8 +55,7 @@ exports.parse = function() {
|
||||
var commentEnd = this.endMatch.index + this.endMatch[0].length;
|
||||
var commentText = this.parser.source.slice(commentStart, commentEnd);
|
||||
return [{
|
||||
type: "comment",
|
||||
void: true,
|
||||
type: "void",
|
||||
text: commentText,
|
||||
start: commentStart,
|
||||
end: commentEnd
|
||||
|
@ -48,8 +48,7 @@ exports.parse = function() {
|
||||
var commentEnd = this.endMatch.index + this.endMatch[0].length;
|
||||
var commentText = this.parser.source.slice(commentStart, commentEnd);
|
||||
return [{
|
||||
type: "comment",
|
||||
void: true,
|
||||
type: "void",
|
||||
text: commentText,
|
||||
start: commentStart,
|
||||
end: commentEnd
|
||||
|
@ -63,8 +63,7 @@ exports.parse = function() {
|
||||
}
|
||||
}
|
||||
return [{
|
||||
type: "parsermode",
|
||||
void: true,
|
||||
type: "void",
|
||||
parseAsInline: this.parser.parseAsInline,
|
||||
start: start,
|
||||
end: this.parser.pos
|
||||
|
Loading…
x
Reference in New Issue
Block a user