update folderstructure to match xdg-ninja

This commit is contained in:
Philipp 2024-07-24 23:17:03 +02:00
parent ec2e91d063
commit 50ecdf4696
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
1040 changed files with 1898 additions and 2830 deletions

View file

@ -0,0 +1,17 @@
## marktext
Plugin for MarkText, a previewer for Markdown files on Mac OS X
### Requirements
* [MarkText](https://github.com/marktext/marktext)
### Usage
* If `marktext` is called without an argument, open MarkText
* If `marktext` is passed a file, open it in MarkText
### Credits
* just copied from plugins/marked2, all credits to marked2 plugin author

View file

@ -0,0 +1,7 @@
#
# If marktext is called without an argument, open MarkText
# If marktext is passed a file, open it in MarkText
#
function marktext() {
open -a "MarkText.app" "$1"
}