mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
35 lines
623 B
JavaScript
35 lines
623 B
JavaScript
|
/*\
|
||
|
title: $:/core/modules/macros/unusedtitle.js
|
||
|
type: application/javascript
|
||
|
module-type: macro
|
||
|
Macro to return a new title that is unused in the wiki. It can be given a name as a base.
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
/*
|
||
|
Information about this macro
|
||
|
*/
|
||
|
|
||
|
exports.name = "unusedtitle";
|
||
|
|
||
|
exports.params = [
|
||
|
{name: "baseName"},
|
||
|
{name: "options"}
|
||
|
];
|
||
|
|
||
|
/*
|
||
|
Run the macro
|
||
|
*/
|
||
|
exports.run = function(baseName, options) {
|
||
|
if(!baseName) {
|
||
|
baseName = $tw.language.getString("DefaultNewTiddlerTitle");
|
||
|
}
|
||
|
return this.wiki.generateNewTitle(baseName, options);
|
||
|
};
|
||
|
|
||
|
})();
|