mirror of
https://github.com/RyanGreenup/cadmus.git
synced 2025-04-21 18:21:51 +02:00
Implemented ODT Export
This commit is contained in:
parent
991ab46377
commit
fdde23e631
@ -172,7 +172,12 @@ It is assumed that:
|
||||
- [VNote](https://github.com/tamlok/vnote)
|
||||
- [Pandoc](https://github.com/jgm/pandoc)
|
||||
- [MarkText](https://github.com/marktext/marktext)
|
||||
- mdless and imgcat
|
||||
- [bat](https://github.com/sharkdp/bat)
|
||||
|
||||
### Interesting or Helpful packages not required
|
||||
|
||||
- [readability-cli](https://gitlab.com/gardenappl/readability-cli)
|
||||
- mdless
|
||||
|
||||
## Recommended Aliases
|
||||
|
||||
|
@ -50,7 +50,7 @@ Help () {
|
||||
|
||||
|
||||
echo
|
||||
echo -e " \e[3m\e[1mNoteFind.sh \e[0m; Helpful Shell Scripts for Markdown Notes"
|
||||
echo -e " \e[3m\e[1m ${script_name}\e[0m; Helpful Shell Scripts for Markdown Notes"
|
||||
echo -e " \e[1;31m--------------------------\e[0m "
|
||||
echo
|
||||
echo -e " \e[3m\e[1m• Usage \e[0m "
|
||||
|
98
bin/cadmus
98
bin/cadmus
@ -78,7 +78,7 @@ arguments () {
|
||||
;;
|
||||
tools) shift; CadmusTools "${@:-}"
|
||||
;;
|
||||
export) echo "begin export"
|
||||
export) shift; CadmusExport "${@:-}"
|
||||
;;
|
||||
convert) echo "begin convert"
|
||||
;;
|
||||
@ -204,6 +204,8 @@ CadmusTools () {
|
||||
;;
|
||||
page-import) shift; xclip -o -selection clipboard | xargs curl | pandoc -f html -t markdown_github+tex_math_dollars --atx-headers | xclip -selection clipboard && exit 0
|
||||
;;
|
||||
odt) shift; FILE="$(mktemp --suffix ".odt")"; xclip -selection clipboard -o | pandoc -s --self-contained -f markdown --mathml -t odt -s -o "${FILE}"; xdg-open "${FILE}" && exit 0 && exit
|
||||
2 ;;
|
||||
--*) >&2 echo "bad option $1"
|
||||
;;
|
||||
*) >&2 echo -e "argument \e[1;35m${1}\e[0m has no definition."
|
||||
@ -221,14 +223,15 @@ function ToolsHelp() {
|
||||
echo -e " \e[3m\e[1m Cadmus Tools\e[0m; Tools for Editing Notes "
|
||||
echo -e " \e[1;31m -------------------------\e[0m "
|
||||
echo
|
||||
echo -e " \e[1;91m \e[1m Command \e[0m\e[0m \e[1;34m┊┊┊ \e[0m Description "
|
||||
echo -e " .......................\e[1;34m┊┊┊\e[0m........................................... "
|
||||
echo -e " \e[1;93m webtitle \e[0m \e[1;34m ┊┊┊ \e[0m✀ Transforms the Clipboard 📋 to a Link"
|
||||
echo -e " \e[1;93m backlinks \e[0m \e[1;34m ┊┊┊ \e[0m✀ Takes the Abs Path of a Note from the Clipboard 📋"
|
||||
echo -e " \e[1;93m \e[0m \e[1;34m ┊┊┊ \e[0m and prints out backlinks (Abs Path)"
|
||||
echo -e " \e[1;93m fix \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Fix the relative path in the clipboard 📋 "
|
||||
echo -e " \e[1;93m link \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Generate a link to another note from the current in the clipboard"
|
||||
echo -e " \e[1;32m page-import \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Transform Clipboard from URL to corresponding Markdown"
|
||||
echo -e " \e[1;91m \e[1m Command \e[0m\e[0m \e[1;34m┊┊┊ \e[0m Description "
|
||||
echo -e " ..................\e[1;34m┊┊┊\e[0m........................................... "
|
||||
echo -e " \e[1;93m webtitle \e[0m \e[1;34m ┊┊┊ \e[0m✀ Transforms the Clipboard 📋 to a Link"
|
||||
echo -e " \e[1;93m backlinks \e[0m \e[1;34m ┊┊┊ \e[0m✀ Takes the Abs Path of a Note from the Clipboard 📋"
|
||||
echo -e " \e[1;93m \e[0m \e[1;34m ┊┊┊ \e[0m and prints out backlinks (Abs Path)"
|
||||
echo -e " \e[1;93m fix \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Fix the relative path in the clipboard 📋 "
|
||||
echo -e " \e[1;93m link \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Generate a link to another note from the current in the clipboard"
|
||||
echo -e " \e[1;32m page-import \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Transform Clipboard from URL to corresponding Markdown"
|
||||
echo -e " \e[1;32m odt \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Export the Clipboard into an ODT File."
|
||||
echo
|
||||
echo -e " \e[3m\e[1m• Legend\e[0m "
|
||||
echo -e " ✀ Works with the clipboard for input/output."
|
||||
@ -236,6 +239,83 @@ function ToolsHelp() {
|
||||
}
|
||||
|
||||
|
||||
# *** Export
|
||||
CadmusExport () {
|
||||
[[ -z "${1:-}" ]] && ExportHelp && exit 0
|
||||
|
||||
while test $# -gt 0
|
||||
do
|
||||
case "$1" in
|
||||
odt) shift; odtExport && exit 0
|
||||
;;
|
||||
org) shift; "${script_dir}/tools/List-Backlinks.sh" "${NOTES_DIR}" ${@:-} && exit 0
|
||||
;;
|
||||
link) shift; "${script_dir}/tools/LinkMarkdownNotes.sh" "${NOTES_DIR}" | xclip -selection clipboard && exit 0
|
||||
;;
|
||||
fix) shift; "${script_dir}/tools/fixLink.sh" "${NOTES_DIR}" && exit 0
|
||||
;;
|
||||
page-import) shift; xclip -o -selection clipboard | xargs curl | pandoc -f html -t markdown_github+tex_math_dollars --atx-headers | xclip -selection clipboard && exit 0
|
||||
;;
|
||||
--*) >&2 echo "bad option $1"
|
||||
;;
|
||||
*) >&2 echo -e "argument \e[1;35m${1}\e[0m has no definition."
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
}
|
||||
|
||||
# **** ODT (odtExport)
|
||||
odtExport () {
|
||||
echo "If the file path is in the clipboard press y to continue"
|
||||
echo " Press any key to choose a note to export"
|
||||
read -d '' -s -n1 CheckDepQ
|
||||
if [ "$CheckDepQ" == "y" ]; then
|
||||
FILEPATH="$(xclip -selection clipboard -o)"
|
||||
fi
|
||||
FILEPATH=$("${script_dir}/NoteFind.sh" "${NOTES_DIR}")
|
||||
FILE="$(basename ${FILEPATH})"
|
||||
FILEOUT="$(echo ${FILE} | cut -f 1 -d '.').odt"
|
||||
cd "$(echo "${FILEPATH}" | xargs realpath | xargs dirname)"
|
||||
OUTDIR="$(mktemp -d /tmp/cadmusExportXXX)"
|
||||
|
||||
echo
|
||||
echo -e " \e[1;94m Calling pandoc from: \e[1;32m $(pwd) \e[0m"
|
||||
echo -e " \e[1;94m Output to: \e[1;32m "${OUTDIR}"/"${FILEOUT}"\e[0m"
|
||||
echo
|
||||
echo -e " \e[1;94m Performing: \e[0m"
|
||||
echo " pandoc "${FILE}" -o "${OUTDIR}"/"${FILEOUT}"" | highlight --syntax bash -O ansi
|
||||
echo
|
||||
|
||||
pandoc "${FILE}" -o "${OUTDIR}"/"${FILEOUT}"
|
||||
xdg-open "${OUTDIR}"/"${FILEOUT}"
|
||||
|
||||
}
|
||||
|
||||
# **** Help
|
||||
function ExportHelp () {
|
||||
|
||||
echo
|
||||
echo -e " \e[3m\e[1m Cadmus Export\e[0m; Tools for Editing Notes "
|
||||
echo -e " \e[1;31m -------------------------\e[0m "
|
||||
echo
|
||||
echo -e " \e[1;91m \e[1m Command \e[0m\e[0m \e[1;34m┊┊┊ \e[0m Description "
|
||||
echo -e " .......................\e[1;34m┊┊┊\e[0m........................................... "
|
||||
echo -e " \e[1;93m odt \e[0m \e[1;34m ┊┊┊ \e[0m✀ Export a Note to ODT"
|
||||
echo -e " \e[1;93m pdflatex \e[0m \e[1;34m ┊┊┊\e[0m [#A] TODO"
|
||||
echo -e " \e[1;93m HTML2PDF \e[0m \e[1;34m ┊┊┊\e[0m [#A] TODO"
|
||||
echo -e " \e[1;93m LaTeX?\e[0m \e[1;34m ┊┊┊\e[0m [#B] TODO"
|
||||
echo -e " \e[1;93m HTML \e[0m \e[1;34m ┊┊┊\e[0m [#A] TODO Should I use pandoc or something else like mkdocs?"
|
||||
echo -e " \e[1;32m page-import \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Transform Clipboard from URL to corresponding Markdown"
|
||||
echo
|
||||
echo -e " \e[3m\e[1m• Notes\e[0m "
|
||||
echo -e " This doesn't currently work for images, I think I should have two menus for export "
|
||||
echo -e " One for Transforming the Clipboard, the other for choosing a file for export."
|
||||
echo
|
||||
}
|
||||
|
||||
|
||||
# *** All the Help
|
||||
## I think all the help files should just be md files, then I could simply do `mdcat *`
|
||||
subHelp () {
|
||||
|
1
todo.org
1
todo.org
@ -92,6 +92,7 @@ If a notename that you point to (like choose from fzf) has the same name as a fo
|
||||
This doesn't work for $$, fix that.
|
||||
|
||||
* TODO [#A] export
|
||||
** TODO Export should also work for images
|
||||
* TODO [#A] convert
|
||||
* TODO [#A] misc
|
||||
* TODO [#A] publish
|
||||
|
134
usage.minder
134
usage.minder
@ -14,22 +14,22 @@
|
||||
<style level="9" isset="true" linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true" connectiondash="solid" connectionwidth="3" connectionarrow="none" connectionpadding="3" connectionfont="Sans 10"/>
|
||||
<style level="10" isset="true" linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true" connectiondash="solid" connectionwidth="3" connectionarrow="none" connectionpadding="3" connectionfont="Sans 10"/>
|
||||
</styles>
|
||||
<drawarea x="107.84871947456872" y="-153.48836263020507" scale="0.75"/>
|
||||
<drawarea x="107.84871947456872" y="-33.488362630205074" scale="0.75"/>
|
||||
<images/>
|
||||
<nodes>
|
||||
<node id="1" posx="1372.9579211504295" posy="1341.1766153971357" maxwidth="200" width="121" height="64" side="left" fold="false" treesize="2007.8995157877621" layout="Manual">
|
||||
<node id="1" posx="1372.9579211504295" posy="1221.1766153971357" maxwidth="200" width="121" height="64" side="left" fold="false" treesize="2007.8995157877621" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Cadmus</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="17" posx="768.44148234834643" posy="485.77065022786473" maxwidth="200" width="118" height="64" side="left" fold="false" treesize="112" color="#68b723" colorroot="true" layout="Manual">
|
||||
<node id="17" posx="768.44148234834643" posy="365.77065022786473" maxwidth="200" width="118" height="64" side="left" fold="false" treesize="112" color="#68b723" colorroot="true" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Preview</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="19" posx="469.44148234834643" posy="464.77065022786473" maxwidth="200" width="220" height="112" side="left" fold="false" treesize="112" color="#68b723" colorroot="false" layout="Manual">
|
||||
<node id="19" posx="469.44148234834643" posy="344.77065022786473" maxwidth="200" width="220" height="112" side="left" fold="false" treesize="112" color="#68b723" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting>
|
||||
<urllink url="https://github.com/markserv/markserv" spos="42" epos="50" embedded="false" ignore="false"/>
|
||||
@ -37,7 +37,7 @@
|
||||
<nodename>Start a Server to Preview the Notes using MarkServ</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="21" posx="192.44148234834631" posy="490.27065022786473" maxwidth="200" width="177" height="61" side="left" fold="false" treesize="61" color="#68b723" colorroot="false" layout="Manual">
|
||||
<node id="21" posx="192.44148234834631" posy="370.27065022786473" maxwidth="200" width="177" height="61" side="left" fold="false" treesize="61" color="#68b723" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="dotted" nodeborder="bracket" nodewidth="200" nodeborderwidth="8" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Use port 55102</nodename>
|
||||
@ -47,25 +47,25 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="3" posx="830.52628052542968" posy="749.21858723958326" maxwidth="200" width="113" height="64" side="left" fold="false" treesize="248" color="#3689e6" colorroot="true" layout="Manual">
|
||||
<node id="3" posx="830.52628052542968" posy="629.21858723958326" maxwidth="200" width="113" height="64" side="left" fold="false" treesize="248" color="#3689e6" colorroot="true" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Publish</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="5" posx="618.52628052542968" posy="749.21858723958326" maxwidth="200" width="112" height="61" side="left" fold="false" treesize="248" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="5" posx="618.52628052542968" posy="629.21858723958326" maxwidth="200" width="112" height="61" side="left" fold="false" treesize="248" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>MkDocs</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="7" posx="395.52628052542968" posy="676.71858723958326" maxwidth="200" width="123" height="61" side="left" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="7" posx="395.52628052542968" posy="556.71858723958326" maxwidth="200" width="123" height="61" side="left" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>gh-pages</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="9" posx="96.526280525429684" posy="655.71858723958326" maxwidth="200" width="199" height="103" side="left" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="9" posx="96.526280525429684" posy="535.71858723958326" maxwidth="200" width="199" height="103" side="left" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Deploy notes as a static site to `gh-pages`</nodename>
|
||||
@ -73,19 +73,19 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="11" posx="291.52628052542968" posy="800.71858723958326" maxwidth="200" width="227" height="61" side="left" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="11" posx="291.52628052542968" posy="680.71858723958326" maxwidth="200" width="227" height="61" side="left" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Custom "/path/to/srv"</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="13" posx="-22.473719474570316" posy="779.71858723958326" maxwidth="200" width="214" height="103" side="left" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="13" posx="-22.473719474570316" posy="659.71858723958326" maxwidth="200" width="214" height="103" side="left" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Deploy notes as a static site to custom server</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="15" posx="-355.47371947457032" posy="758.71858723958326" maxwidth="200" width="233" height="145" side="left" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="15" posx="-355.47371947457032" posy="638.71858723958326" maxwidth="200" width="233" height="145" side="left" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="bracket" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>This is what you would use if you wanted to self-host as opposed to using GitHub</nodename>
|
||||
@ -99,19 +99,19 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="59" posx="1680.7587024004295" posy="188.5" maxwidth="200" width="78" height="61" side="right" fold="false" treesize="164" color="#f37329" colorroot="true" layout="Manual">
|
||||
<node id="59" posx="1680.7587024004295" posy="68.5" maxwidth="200" width="78" height="61" side="right" fold="false" treesize="164" color="#f37329" colorroot="true" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Find</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="61" posx="1858.7587024004295" posy="147.5" maxwidth="200" width="84" height="61" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="61" posx="1858.7587024004295" posy="27.5" maxwidth="200" width="84" height="61" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Grep</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="63" posx="2042.7587024004283" posy="137" maxwidth="200" width="223" height="82" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="63" posx="2042.7587024004283" posy="17" maxwidth="200" width="223" height="82" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting>
|
||||
<urllink url="https://github.com/lotabout/skim" spos="36" epos="40" embedded="false" ignore="false"/>
|
||||
@ -121,13 +121,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="65" posx="1858.7587024004295" posy="229.5" maxwidth="200" width="93" height="61" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="65" posx="1858.7587024004295" posy="109.5" maxwidth="200" width="93" height="61" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Name</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="67" posx="2051.7587024004283" posy="219" maxwidth="200" width="213" height="82" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="67" posx="2051.7587024004283" posy="99" maxwidth="200" width="213" height="82" side="right" fold="false" treesize="82" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting>
|
||||
<urllink url="https://github.com/junegunn/fzf" spos="34" epos="37" embedded="false" ignore="false"/>
|
||||
@ -139,13 +139,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="69" posx="1723.4658150306375" posy="327.09706624348939" maxwidth="200" width="103" height="61" side="right" fold="false" treesize="82" color="#f9c440" colorroot="true" layout="Manual">
|
||||
<node id="69" posx="1723.4658150306375" posy="207.09706624348939" maxwidth="200" width="103" height="61" side="right" fold="false" treesize="82" color="#f9c440" colorroot="true" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Search</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="71" posx="1926.4658150306384" posy="316.59706624348951" maxwidth="200" width="222" height="82" side="right" fold="false" treesize="82" color="#f9c440" colorroot="false" layout="Manual">
|
||||
<node id="71" posx="1926.4658150306384" posy="196.59706624348951" maxwidth="200" width="222" height="82" side="right" fold="false" treesize="82" color="#f9c440" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting>
|
||||
<urllink url="www.google.com" spos="25" epos="32" embedded="false" ignore="false"/>
|
||||
@ -155,19 +155,19 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="49" posx="1776.1036731035545" posy="508.08664957682288" maxwidth="200" width="82" height="61" side="right" fold="false" treesize="248" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="49" posx="1776.1036731035545" posy="388.08664957682288" maxwidth="200" width="82" height="61" side="right" fold="false" treesize="248" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Tags</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="51" posx="1958.1036731035554" posy="456.58664957682277" maxwidth="200" width="89" height="61" side="right" fold="false" treesize="145" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="51" posx="1958.1036731035554" posy="336.58664957682277" maxwidth="200" width="89" height="61" side="right" fold="false" treesize="145" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Open</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="53" posx="2147.1036731035533" posy="414.58664957682277" maxwidth="200" width="223" height="145" side="right" fold="false" treesize="145" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="53" posx="2147.1036731035533" posy="294.58664957682277" maxwidth="200" width="223" height="145" side="right" fold="false" treesize="145" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting>
|
||||
<urllink url="https://github.com/oniony/TMSU" spos="62" epos="66" embedded="false" ignore="false"/>
|
||||
@ -179,13 +179,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="55" posx="1958.1036731035554" posy="580.58664957682288" maxwidth="200" width="136" height="61" side="right" fold="false" treesize="103" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="55" posx="1958.1036731035554" posy="460.58664957682288" maxwidth="200" width="136" height="61" side="right" fold="false" treesize="103" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Update DB</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="57" posx="2194.1036731035533" posy="559.58664957682288" maxwidth="200" width="229" height="103" side="right" fold="false" treesize="103" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="57" posx="2194.1036731035533" posy="439.58664957682288" maxwidth="200" width="229" height="103" side="right" fold="false" treesize="103" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting>
|
||||
<urllink url="https://github.com/oniony/TMSU" spos="45" epos="49" embedded="false" ignore="false"/>
|
||||
@ -197,37 +197,37 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="131" posx="2298.8636828691792" posy="695.92474365234762" maxwidth="200" width="151" height="61" side="right" fold="false" treesize="285.99999999999955" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="131" posx="2298.8636828691792" posy="575.92474365234762" maxwidth="200" width="151" height="61" side="right" fold="false" treesize="285.99999999999955" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Editing Tools</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="133" posx="2549.8636828691783" posy="583.42474365234705" maxwidth="200" width="172" height="61" side="right" fold="false" treesize="61" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="133" posx="2549.8636828691783" posy="463.42474365234705" maxwidth="200" width="172" height="61" side="right" fold="false" treesize="61" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Make Footnote</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="135" posx="2549.8636828691783" posy="644.42474365234693" maxwidth="200" width="219" height="61" side="right" fold="false" treesize="61" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="135" posx="2549.8636828691783" posy="524.42474365234693" maxwidth="200" width="219" height="61" side="right" fold="false" treesize="61" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Generate BackLinks</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="137" posx="2549.8636828691783" posy="705.42474365234762" maxwidth="200" width="150" height="61" side="right" fold="false" treesize="61" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="137" posx="2549.8636828691783" posy="585.42474365234762" maxwidth="200" width="150" height="61" side="right" fold="false" treesize="61" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Repair Links</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="139" posx="2549.8636828691783" posy="787.42474365234784" maxwidth="200" width="190" height="61" side="right" fold="false" treesize="103" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="139" posx="2549.8636828691783" posy="667.42474365234784" maxwidth="200" width="190" height="61" side="right" fold="false" treesize="103" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Import WebPage</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="141" posx="2839.8636828691783" posy="766.42474365234784" maxwidth="200" width="245" height="103" side="right" fold="false" treesize="103" color="#f37329" colorroot="false" layout="Manual">
|
||||
<node id="141" posx="2839.8636828691783" posy="646.42474365234784" maxwidth="200" width="245" height="103" side="right" fold="false" treesize="103" color="#f37329" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>curl google.com | pandoc -f html -t gfm+$$Math magic x -o</nodename>
|
||||
@ -237,25 +237,25 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="73" posx="1889.5980578691795" posy="1285.9296671549487" maxwidth="200" width="106" height="64" side="right" fold="false" treesize="805.206298828125" color="#3689e6" colorroot="true" layout="Manual">
|
||||
<node id="73" posx="1889.5980578691795" posy="1165.9296671549487" maxwidth="200" width="106" height="64" side="right" fold="false" treesize="805.206298828125" color="#3689e6" colorroot="true" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="75" posx="2079.8812609941792" posy="913.72336832682413" maxwidth="200" width="132" height="61" side="right" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="75" posx="2079.8812609941792" posy="793.72336832682413" maxwidth="200" width="132" height="61" side="right" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Markdown</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="77" posx="2311.8812609941792" posy="871.72336832682413" maxwidth="200" width="229" height="145" side="right" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="77" posx="2311.8812609941792" posy="751.72336832682413" maxwidth="200" width="229" height="145" side="right" fold="false" treesize="145" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export the Markdown into a seperate folder with the images included (Not Attachments)</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="79" posx="2640.8812609941792" posy="903.22336832682413" maxwidth="200" width="197" height="82" side="right" fold="false" treesize="82" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="79" posx="2640.8812609941792" posy="783.22336832682413" maxwidth="200" width="197" height="82" side="right" fold="false" treesize="82" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>VNote will Also let you do this</nodename>
|
||||
@ -265,25 +265,25 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="81" posx="2087.5980578691792" posy="1256.4296671549487" maxwidth="200" width="95" height="64" side="right" fold="false" treesize="455.19734700520837" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="81" posx="2087.5980578691792" posy="1136.4296671549487" maxwidth="200" width="95" height="64" side="right" fold="false" treesize="455.19734700520837" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>HTML</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="83" posx="2500.6563260983444" posy="1106.4972127278656" maxwidth="200" width="116" height="61" side="right" fold="false" treesize="124" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="83" posx="2500.6563260983444" posy="986.49721272786564" maxwidth="200" width="116" height="61" side="right" fold="false" treesize="124" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>MathJax</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="85" posx="2716.6563260983444" posy="1074.9972127278656" maxwidth="200" width="226" height="124" side="right" fold="false" treesize="124" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="85" posx="2716.6563260983444" posy="954.99721272786564" maxwidth="200" width="226" height="124" side="right" fold="false" treesize="124" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export to a self-contained HTML with a call to MathJax CDN embedded</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="87" posx="3042.6563260983462" posy="1074.9972127278656" maxwidth="200" width="182" height="124" side="right" fold="false" treesize="124" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="87" posx="3042.6563260983462" posy="954.99721272786564" maxwidth="200" width="182" height="124" side="right" fold="false" treesize="124" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="bracket" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>I'd probably recommend just exporting from VSCode.</nodename>
|
||||
@ -293,13 +293,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="89" posx="2476.2035266191792" posy="1230.9203898111987" maxwidth="200" width="112" height="61" side="right" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="89" posx="2476.2035266191792" posy="1110.9203898111987" maxwidth="200" width="112" height="61" side="right" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>MathML</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="91" posx="2688.2035266191783" posy="1209.9203898111987" maxwidth="200" width="230" height="103" side="right" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="91" posx="2688.2035266191783" posy="1089.9203898111987" maxwidth="200" width="230" height="103" side="right" fold="false" treesize="103" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export to a Self-Contained HTML with MathML</nodename>
|
||||
@ -307,13 +307,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="93" posx="2492.0023547441783" posy="1364.1945597330732" maxwidth="200" width="67" height="61" side="right" fold="false" treesize="208" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="93" posx="2492.0023547441783" posy="1244.1945597330732" maxwidth="200" width="67" height="61" side="right" fold="false" treesize="208" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Zip</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="95" posx="2659.0023547441783" posy="1322.1945597330732" maxwidth="200" width="230" height="208" side="right" fold="false" treesize="208" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="95" posx="2659.0023547441783" posy="1202.1945597330732" maxwidth="200" width="230" height="208" side="right" fold="false" treesize="208" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export to a Zipped up folder of HTML/Images (with embedded mathjax CDN), Good for Importing to MediaWiki</nodename>
|
||||
@ -323,13 +323,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="97" posx="2087.5980578691792" posy="1472.9296671549473" maxwidth="200" width="131" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="97" posx="2087.5980578691792" posy="1352.9296671549473" maxwidth="200" width="131" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Org-Mode</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="99" posx="2318.5980578691792" posy="1472.9296671549473" maxwidth="200" width="235" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="99" posx="2318.5980578691792" posy="1352.9296671549473" maxwidth="200" width="235" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Convert to Org-Mode </nodename>
|
||||
@ -337,13 +337,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="101" posx="2087.5980578691792" posy="1544.4296671549478" maxwidth="200" width="79" height="61" side="right" fold="false" treesize="82" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="101" posx="2087.5980578691792" posy="1424.4296671549478" maxwidth="200" width="79" height="61" side="right" fold="false" treesize="82" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>PDF</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="103" posx="2266.5980578691792" posy="1533.9296671549478" maxwidth="200" width="206" height="82" side="right" fold="false" treesize="82" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="103" posx="2266.5980578691792" posy="1413.9296671549478" maxwidth="200" width="206" height="82" side="right" fold="false" treesize="82" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export to a .tex file and a PDF</nodename>
|
||||
@ -351,13 +351,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="105" posx="2087.5980578691792" posy="1615.9296671549478" maxwidth="200" width="88" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="105" posx="2087.5980578691792" posy="1495.9296671549478" maxwidth="200" width="88" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>DocX</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="107" posx="2275.5980578691792" posy="1615.9296671549478" maxwidth="200" width="228" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<node id="107" posx="2275.5980578691792" posy="1495.9296671549478" maxwidth="200" width="228" height="61" side="right" fold="false" treesize="61" color="#3689e6" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Export to a DocX File</nodename>
|
||||
@ -367,37 +367,37 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="109" posx="2449.7074328691792" posy="1791.9325561523442" maxwidth="200" width="110" height="61" side="right" fold="false" treesize="488.00000000000091" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="109" posx="2449.7074328691792" posy="1671.9325561523442" maxwidth="200" width="110" height="61" side="right" fold="false" treesize="488.00000000000091" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Convert</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="111" posx="2659.7074328691783" posy="1669.932556152344" maxwidth="200" width="201" height="61" side="right" fold="false" treesize="244" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="111" posx="2659.7074328691783" posy="1549.932556152344" maxwidth="200" width="201" height="61" side="right" fold="false" treesize="244" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>From MD (Export)</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="113" posx="2960.7074328691783" posy="1578.4325561523438" maxwidth="200" width="74" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="113" posx="2960.7074328691783" posy="1458.4325561523438" maxwidth="200" width="74" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Org</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="115" posx="2960.7074328691783" posy="1639.432556152344" maxwidth="200" width="88" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="115" posx="2960.7074328691783" posy="1519.432556152344" maxwidth="200" width="88" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>DocX</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="117" posx="2960.7074328691783" posy="1700.432556152344" maxwidth="200" width="96" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="117" posx="2960.7074328691783" posy="1580.432556152344" maxwidth="200" width="96" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>LaTeX</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="119" posx="2960.7074328691783" posy="1761.432556152344" maxwidth="200" width="94" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="119" posx="2960.7074328691783" posy="1641.432556152344" maxwidth="200" width="94" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>HTML</nodename>
|
||||
@ -405,31 +405,31 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="121" posx="2659.7074328691783" posy="1913.9325561523451" maxwidth="200" width="176" height="61" side="right" fold="false" treesize="244" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="121" posx="2659.7074328691783" posy="1793.9325561523451" maxwidth="200" width="176" height="61" side="right" fold="false" treesize="244" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="solid" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>To MD (Import)</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="123" posx="2935.7074328691783" posy="1822.4325561523442" maxwidth="200" width="94" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="123" posx="2935.7074328691783" posy="1702.4325561523442" maxwidth="200" width="94" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>HTML</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="125" posx="2935.7074328691783" posy="1883.4325561523451" maxwidth="200" width="71" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="125" posx="2935.7074328691783" posy="1763.4325561523451" maxwidth="200" width="71" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>MD</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="127" posx="2935.7074328691783" posy="1944.4325561523451" maxwidth="200" width="96" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="127" posx="2935.7074328691783" posy="1824.4325561523451" maxwidth="200" width="96" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>LaTeX</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="129" posx="2935.7074328691783" posy="2005.4325561523449" maxwidth="200" width="88" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="129" posx="2935.7074328691783" posy="1885.4325561523449" maxwidth="200" width="88" height="61" side="right" fold="false" treesize="61" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="true" linkdash="dotted" nodeborder="underlined" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>DocX</nodename>
|
||||
@ -439,37 +439,37 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="143" posx="1462.5129341712634" posy="1816.392517089846" maxwidth="200" width="84" height="64" side="right" fold="false" treesize="452.99999999999932" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="143" posx="1462.5129341712634" posy="1696.392517089846" maxwidth="200" width="84" height="64" side="right" fold="false" treesize="452.99999999999932" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Misc</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="145" posx="1646.5129341712634" posy="1691.8995157877628" maxwidth="200" width="192" height="64" side="right" fold="false" treesize="64" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="145" posx="1646.5129341712634" posy="1571.8995157877628" maxwidth="200" width="192" height="64" side="right" fold="false" treesize="64" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Focus Windows</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="146" posx="1646.5129341712634" posy="1755.8995157877628" maxwidth="200" width="230" height="64" side="right" fold="false" treesize="64" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="146" posx="1646.5129341712634" posy="1635.8995157877628" maxwidth="200" width="230" height="64" side="right" fold="false" treesize="64" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>open notes in code</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="147" posx="1646.5129341712634" posy="1819.899515787763" maxwidth="200" width="176" height="88" side="right" fold="false" treesize="88" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="147" posx="1646.5129341712634" posy="1699.899515787763" maxwidth="200" width="176" height="88" side="right" fold="false" treesize="88" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>open notes in ranger</nodename>
|
||||
<nodenote></nodenote>
|
||||
</node>
|
||||
<node id="148" posx="1646.5129341712634" posy="1907.8995157877621" maxwidth="200" width="221" height="88" side="right" fold="false" treesize="148.5" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="148" posx="1646.5129341712634" posy="1787.8995157877621" maxwidth="200" width="221" height="88" side="right" fold="false" treesize="148.5" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Print a note to the terminal</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="149" posx="1967.5129341712634" posy="1920.3995157877621" maxwidth="200" width="221" height="136" side="right" fold="false" treesize="136" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="149" posx="1967.5129341712634" posy="1800.3995157877621" maxwidth="200" width="221" height="136" side="right" fold="false" treesize="136" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>cd ~/Notes/; fzf -q '.md' --preview 'mdcat {}' | xargs mdcat </nodename>
|
||||
@ -477,13 +477,13 @@
|
||||
</node>
|
||||
</nodes>
|
||||
</node>
|
||||
<node id="150" posx="1646.5129341712634" posy="2056.3995157877616" maxwidth="200" width="163" height="64" side="right" fold="false" treesize="88.5" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="150" posx="1646.5129341712634" posy="1936.3995157877616" maxwidth="200" width="163" height="64" side="right" fold="false" treesize="88.5" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>Synchronise</nodename>
|
||||
<nodenote></nodenote>
|
||||
<nodes>
|
||||
<node id="151" posx="1909.5129341712634" posy="2056.8995157877616" maxwidth="200" width="210" height="88" side="right" fold="false" treesize="88" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<node id="151" posx="1909.5129341712634" posy="1936.8995157877616" maxwidth="200" width="210" height="88" side="right" fold="false" treesize="88" color="#c6262e" colorroot="false" layout="Manual">
|
||||
<style linktype="curved" linkwidth="4" linkarrow="false" linkdash="longdash" nodeborder="pilled" nodewidth="200" nodeborderwidth="2" nodefill="false" nodemargin="8" nodepadding="12" nodefont="Sans 15" nodemarkup="true"/>
|
||||
<formatting/>
|
||||
<nodename>git add -A; git commit; git push</nodename>
|
||||
|
Loading…
x
Reference in New Issue
Block a user