Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crispgm/alfred-markdown-table
Generate Markdown Table with Alfred Workflow
https://github.com/crispgm/alfred-markdown-table
alfred alfred-workflow alfred3-workflow markdown
Last synced: 8 days ago
JSON representation
Generate Markdown Table with Alfred Workflow
- Host: GitHub
- URL: https://github.com/crispgm/alfred-markdown-table
- Owner: crispgm
- License: mit
- Created: 2019-03-24T12:37:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T03:11:06.000Z (over 1 year ago)
- Last Synced: 2024-11-01T10:35:07.500Z (15 days ago)
- Topics: alfred, alfred-workflow, alfred3-workflow, markdown
- Language: Go
- Homepage: http://www.packal.org/workflow/alfred-markdown-table
- Size: 5.34 MB
- Stars: 26
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alfred Markdown Table
Generate Markdown Table with Alfred Workflow.
![screenshot](/screenshot.png)
## Installation
### Install via Packal
[Alfred Markdown Table](http://www.packal.org/workflow/alfred-markdown-table)
### Install manually
Download and import [alfred-markdown-table.alfredworkflow](https://github.com/crispgm/alfred-markdown-table/raw/master/alfred-markdown-table.alfredworkflow).
## Dependencies
- [Alfred](https://www.alfredapp.com/)
- [Alfred Powerpack](https://www.alfredapp.com/powerpack/)## Usage
Generate empty table:
```shell
table 3 3Output:
| | | |
|--|--|--|
| | | |
| | | |
| | | |
```Generate table with test data:
```shell
table 3 3 test
# `table 3 3 data` is an alternativeOutput:
| COMPASSIONATE ALBATTANI | INSPIRING RITCHIE | UPBEAT BABBAGE |
|-------------------------|--------------------|---------------------|
| determined_haibt | goofy_darwin | hungry_wilson |
| elegant_rosalind | suspicious_swirles | flamboyant_dijkstra |
| compassionate_blackwell | elastic_franklin | silly_bardeen |
```## Credit
- [deanishe/awgo](https://github.com/deanishe/awgo)
- [olekukonko/tablewriter](https://github.com/olekukonko/tablewriter)## License
MIT