mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-11 01:03:01 -07:00
17 lines
263 B
JavaScript
17 lines
263 B
JavaScript
/*\
|
|
title: $:/core/modules/macros/qualify.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
exports.name = "qualify";
|
|
|
|
exports.params = [
|
|
{name: "title"}
|
|
];
|
|
|
|
exports.run = function(title) {
|
|
return title + "-" + this.getStateQualifier();
|
|
};
|