Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sayanarijit/md-footer
[WIP] Generate markdown footer links
https://github.com/sayanarijit/md-footer
markdown rust
Last synced: 18 days ago
JSON representation
[WIP] Generate markdown footer links
- Host: GitHub
- URL: https://github.com/sayanarijit/md-footer
- Owner: sayanarijit
- License: mit
- Created: 2021-07-03T07:40:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-19T10:39:51.000Z (about 3 years ago)
- Last Synced: 2024-10-08T16:37:58.809Z (about 1 month ago)
- Topics: markdown, rust
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 11
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
WIP
Generate markdown footer links.
### Example:
```markdown
- [md-footer](https://github.com/sayanarijit/md-footer)
- `[ignoreme](https://link.to.ignore)`[![xplr](https://s3.gifyu.com/images/xplr-0.5.0.gif)](https://github.com/sayanarijit/xplr)
```Will convert into
```markdown
- [md-footer][1]
- `[ignoreme](https://link.to.ignore)`[![xplr][2]][3]
[1]:https://github.com/sayanarijit/md-footer
[2]:https://s3.gifyu.com/images/xplr-0.5.0.gif
[3]:https://github.com/sayanarijit/xplr
```### Usage:
```bash
cat /path/fo/file.md | md-footer# or
md-footer /path/to/file.md
```It was used to [generate footer links for the xplr book](https://github.com/sayanarijit/xplr/pull/294/files).