Alfred Workflow for search and open Markdown files
When using Typora to manage markdown documents, the built-in search function is not very useful. Some documents cannot be searched.
Open the environment variable setting page of Markdown Search workflow, and configure:
MARKDOWN_PATH--Required-- Directory path of markdown files,multiple directories are separated by English colon:MARKDOWN_APP--Optional-- Third-party apps, such as/Applications/Typora.app
Keyword: mdd (you can also customize this shortcut to trigger workflow)
- When no parameters are entered, 20 document records are displayed in reverse order according to the latest modification time;
- Support the
-t(title) parameter to search the title area of the document (title area: to support multiple md document formats, define thefirst nine linesof the document as the title area for keyword search) ; - Support inputting multiple keywords to filter, separated by spaces, keywords are not case sensitive;
- Select the corresponding line and press
Enterto open the document with the system default markdown document App; - Select the corresponding line and press
Options + Enter, the document will be opened with a custom-configured third-party App;
# By default, 20 document records are displayed according to the latest modification time
mdd
# Search keywords in the title area, the keywords are not case sensitive
mdd -t golang
# Full text search keywords, keywords are not case sensitive
mdd golang
# Full text search keywords, multiple keywords are separated by spaces, keywords are not case sensitive
mdd golang Python
# Find documents that contain `golang` in the title area and `python` in the content of the document
mdd -t golang python
# Find documents with `golang` and `python` in the title area
mdd -t golang,python
# Find documents that contain `golang` and `python` keywords in the title area and `mysql` in the document content
mdd -t golang,python mysql