These are great! Thanks for the great explanations!
@ShiJianhui if you’re writing in “rich text” in Tinderbox and just looking for an easy way to export to Markdown files (and don’t currently need the other Pandoc options nicely demonstrated in this thread) then you may find it convenient to use the short AppleScript posted and explained here .
Script repeated here (improved by ideas from this thread, e.g. "borrowed" idea to use `touch`)
-- Have an export folder ready. Select Tinderbox notes and run.
-- Assumes Pandoc is installed at /usr/local/bin/. See https://pandoc.org/installing.html
-- NB: overwrites any like-named .md files in that folder
set prefix to "@" -- character(s) used to distinguish internal links from external ones
set pandocCmd to "/usr/local/bin/pandoc -f html -t markdown_mmd" -- html to MultiMarkdown
set sedCmd to "sed -E 's/" & prefix & "(\\[.+\\]).+\\)/[\\1]/g;t'" -- grab anchor, surround by [[ ]]
set cmdStr to pandocCmd & " | " & sedCmd -- assemble the "pipe"
set theFolder to (choose folder with prompt "Choose a folder to receive the exported MD files")
tell front document of application "Tinderbox 8"
repeat with aNote in selections
tell aNote
set theFilePath to POSIX path of theFolder & (value of attribute "Name") & ".md" -- name file after note
set theHTML to evaluate with "exportedString(this,$HTMLExportTemplate)"
set theMMD to do shell script "echo " & quoted form of theHTML & " | " & cmdStr
do shell script "touch " & quoted form of theFilePath -- create file if doesn't exist
do shell script "echo " & quoted form of theMMD & "> " & quoted form of theFilePath -- write to file
end tell
end repeat
end tell
Virtually no assembly is required within Tinderbox. Add the default export template at File > Built-in Templates > HTML
, then select Tinderbox notes you want, and click run
.