An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

![example workflow](https://github.com/Dead-tech/tmdc/actions/workflows/build.yml/badge.svg)
![example workflow](https://github.com/Dead-tech/tmdc/actions/workflows/tests.yml/badge.svg)

# 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.