1
0
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:
lin onetwo 2024-08-04 14:38:54 +00:00
parent 5b2c3dbace
commit 7bc408b3b0
3 changed files with 3 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -63,8 +63,7 @@ exports.parse = function() {
}
}
return [{
type: "parsermode",
void: true,
type: "void",
parseAsInline: this.parser.parseAsInline,
start: start,
end: this.parser.pos