https://github.com/shivansh/convert-md
:star: A FreeBSD MoinWiki compatible markdown converter.
https://github.com/shivansh/convert-md
Last synced: 4 months ago
JSON representation
:star: A FreeBSD MoinWiki compatible markdown converter.
- Host: GitHub
- URL: https://github.com/shivansh/convert-md
- Owner: shivansh
- License: mit
- Created: 2016-06-25T06:09:24.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-17T16:57:58.000Z (almost 9 years ago)
- Last Synced: 2025-01-07T16:27:21.506Z (5 months ago)
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# convert-md
Markdown converter compatible with FreeBSD style syntax.
This inspiration for this project came as a need for writing weekly updates for both FreBSD-wiki and my blog, since FreeBSD supports a different format for styling in markdown, it would be a lot of work for writing same thing twice.[Markdown Rules](https://wiki.freebsd.org/HelpOnMoinWikiSyntax) for FreeBSD.
## Requirements
* xclip (optional)
* GNU sed
* GNU awk## Usage
* `git clone [email protected]:shivrai/convert-md.git && bash ./convert-md/script.bash`.
**Note:** Do not execute arbitrary scripts without being sure as in what they contain. This however is just a simple script making use of `sed` and `awk`.
* Your converted document in MoinWiki syntax is placed inside your clipboard. Enjoy !!## TODO
* Currently multiple traversals are being used for replacement. A better approach would be to replace everything in a single traversal.
* A vim plugin doing in place conversion would also be good.
* Change styles for hyperlinks.