https://github.com/linarcx/mdv
markdown viewer written in c
https://github.com/linarcx/mdv
Last synced: about 1 year ago
JSON representation
markdown viewer written in c
- Host: GitHub
- URL: https://github.com/linarcx/mdv
- Owner: LinArcX
- License: gpl-3.0
- Archived: true
- Created: 2020-03-21T18:33:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-27T20:43:50.000Z (about 6 years ago)
- Last Synced: 2025-03-02T05:15:22.198Z (over 1 year ago)
- Language: C
- Size: 67.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Installation
### Void
`sudo xbps-install -S mdv`
### Arch
- git version
`trizen -S mdv-git`
- release version
`trizen -S mdv`
### Build From Source
First Install these dependencies first:
#### Dependencies
runtime dependencies:
- glibc
build dependencies:
- cmake
Then clone and build the project:
```
git clone https://github.com/LinArcX/mdv/
cd mdv; mkdir build; cd build
cmake ..; make
```
And finally, run it:
`cd ..; build/mdv`
## Usage
./markdown [input-file] [output-file]
If you don't specify the _output-file_, program will parse everything to stdout in your terminal.
###Examples
#### Quotes
> quotes
> quotes
#### Headers
# 1st header
## 2nd header
### 3rd header
.
.
.
and so on.
#### Inline formating:
*bold test* and _italics_.
#### Links:
[link-name](example.com/cats)
#### Lists:
* No 1
* Next please!
* Here I am!
## License
