https://github.com/dead-tech/tmdc
Tiny Markdown Compiler in Rust.
https://github.com/dead-tech/tmdc
Last synced: 10 months ago
JSON representation
Tiny Markdown Compiler in Rust.
- Host: GitHub
- URL: https://github.com/dead-tech/tmdc
- Owner: dead-tech
- License: mit
- Created: 2021-07-08T12:12:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-27T09:25:05.000Z (almost 5 years ago)
- Last Synced: 2025-03-24T09:16:58.510Z (over 1 year ago)
- Language: Rust
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


# tmdc - Tiny Markdown Compiler
**_This project is still in active development, use it at your own risk!_**
Simple Markdown to HTML compiler written in Rust.
## Features
- [x] Headings
- [x] Paragraphs
- [x] Italic
- [x] Bold
- [x] Multi-line code blocks
- [x] Unordered lists
- [x] Line Breaks
## Dependecies
* [rust](https://www.rust-lang.org/it)
## Usage
### Running with cargo
```sh
$ cargo run -- .md
```
### Building with cargo then running
```
$ cargo build
$ ./target/debug/tmdc .md
```
Test files can be found in the examples dir.