mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-20 00:34:50 +00:00
Fixed typo in the list macro
Pesky dots and dashes
This commit is contained in:
parent
5f17e7d01b
commit
3647690308
@ -132,7 +132,7 @@ Create the tiddler macro needed to represent a given tiddler
|
|||||||
exports.createListElementMacro = function(title) {
|
exports.createListElementMacro = function(title) {
|
||||||
// Check if the tiddler is a draft
|
// Check if the tiddler is a draft
|
||||||
var tiddler = this.wiki.getTiddler(title),
|
var tiddler = this.wiki.getTiddler(title),
|
||||||
draft = tiddler ? tiddler.hasField("draft-of") : false;
|
draft = tiddler ? tiddler.hasField("draft.of") : false;
|
||||||
// Figure out the template to use
|
// Figure out the template to use
|
||||||
var template = this.params.template,
|
var template = this.params.template,
|
||||||
templateText = this.params.templateText;
|
templateText = this.params.templateText;
|
||||||
|
Loading…
Reference in New Issue
Block a user