mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-04-21 14:21:30 +00:00
20 lines
342 B
JavaScript
20 lines
342 B
JavaScript
/*\
|
|
title: $:/core/modules/macros/makedatauri.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
exports.name = "makedatauri";
|
|
|
|
exports.params = [
|
|
{name: "text"},
|
|
{name: "type"},
|
|
{name: "_canonical_uri"}
|
|
];
|
|
|
|
exports.run = function(text,type,_canonical_uri) {
|
|
return $tw.utils.makeDataUri(text,type,_canonical_uri);
|
|
};
|