Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leafney/alfred-markdown-search
Alfred Workflow for search and open markdown files
https://github.com/leafney/alfred-markdown-search
alfred-workflow markdown mweb typora
Last synced: 4 days ago
JSON representation
Alfred Workflow for search and open markdown files
- Host: GitHub
- URL: https://github.com/leafney/alfred-markdown-search
- Owner: leafney
- License: mit
- Created: 2020-11-21T10:19:17.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-27T00:50:47.000Z (almost 4 years ago)
- Last Synced: 2023-02-28T23:11:36.377Z (over 1 year ago)
- Topics: alfred-workflow, markdown, mweb, typora
- Language: Shell
- Homepage:
- Size: 29.3 KB
- Stars: 9
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# alfred-markdown-search
Alfred Workflow for search and open Markdown files
## Documents
* [English document](REAMDME.md)
* [中文文档](README_ZH.md)## 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)
1. When no parameters are entered, 20 document records are displayed in reverse order according to the latest modification time;
2. Support the `-t` (`title`) parameter to search the title area of the document (`title area`: to support multiple md document formats, define the `first nine lines` of the document as the title area for keyword search) ;
3. Support inputting multiple keywords to filter, separated by spaces, keywords are not case sensitive;
4. Select the corresponding line and press `Enter` to open the document with the system default markdown document App;
5. 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
```## Thanks
* [MWeb workflow](https://github.com/tianhao/alfred-mweb-workflow)