mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
98f78e50b8
@sukima - this avoids duplicating the metadata
33 lines
625 B
JavaScript
33 lines
625 B
JavaScript
/*\
|
|
title: $:/edition/tw5.com/dropbox-url.js
|
|
type: application/javascript
|
|
tags: $:/tags/Macro
|
|
module-type: macro
|
|
|
|
Implements the Dropbox URL converter macro.
|
|
|
|
```
|
|
<$macrocall $name="dropbox-url" url={{$:/temp/dropbox}}/>
|
|
```
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.name = "dropbox-url";
|
|
|
|
exports.params = [
|
|
{name: "url", default: "https://www.dropbox.com/s/<gobbledegook>/mywiki.html"}
|
|
];
|
|
|
|
exports.run = function(url) {
|
|
url = url.replace("www.dropbox.com","dl.dropboxusercontent.com");
|
|
return "`" + url + "` <small>([[open|" + url + "]])</small>";
|
|
};
|
|
|
|
})();
|