- Created by leafney
- 🗓 Last Updated: 27/12/20 00:50:47
- 🌟 Stars on GitHub: 9
- Please consider supporting the creator by Starring or Sponsoring them on GitHub!
- Get Latest Release
- Get Source Code
From their README
alfred-markdown-search
Alfred Workflow for search and open Markdown files
Documents
Pain Point
When using Typora to manage markdown documents, the built-in search function is not very useful. Some documents cannot be searched.
Params Setting
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
How to use
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 lines
of 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
Enter
to 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;
Examples
# 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