-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpaste-html-as-github-markdown.qml
53 lines (46 loc) · 1.69 KB
/
paste-html-as-github-markdown.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import QtQml 2.0
import QOwnNotesTypes 1.0
/**
* With this script you can right click in the note edit and paste previously copied HTML
* from a website as GitHub Markdown with the help of Pandoc.
*/
Script {
property string pandocPath;
// register your settings variables so the user can set them in the script settings
property variant settingsVariables: [
{
"identifier": "pandocPath",
"name": "Pandoc path",
"description": "Please select the path to your Pandoc executable:",
"type": "file",
"default": "pandoc",
},
];
/**
* Initializes the custom action
*/
function init() {
script.registerCustomAction("html2Markdown", "Paste HTML as GitHub Markdown", "GitHub Markdown", "edit-paste", true, true);
}
/**
* This function is invoked when a custom action is triggered
* in the menu or via button
*
* @param identifier string the identifier defined in registerCustomAction
*/
function customActionInvoked(identifier) {
if (identifier != "html2Markdown") {
return;
}
var html = script.clipboard(true);
// you need pandoc to convert HTML to Markdown
/**
* UPDATE 2021-12-01:
* replacing "markdown_github" with "gfm" as markdown_github is now deprecated and does not have all of the features as gfm
* Original call: var params = ["-f", "html", "-t", "markdown_github"];
*/
var params = ["-f", "html", "-t", "gfm"];
var markdown = script.startSynchronousProcess(pandocPath, params, html);
script.noteTextEditWrite(markdown);
}
}