txt_to_md

Crates.iotxt_to_md
lib.rstxt_to_md
version0.1.1
sourcesrc
created_at2023-12-11 20:33:48.135877
updated_at2023-12-11 20:37:10.409296
descriptionCommand converting from a txt file to a markdown file
homepage
repositoryhttps://github.com/scepter914/txt-to-md-rs
max_upload_size
id1065556
size23,141
Satoshi Tanaka (scepter914)

documentation

README

txt_to_md

This repository is converter from txt files to markdown file.

Get started

  • install
cargo install txt_to_md
  • Prepare text.txt
## a
### bb

ccc
ddd
eee
fff

ggg
hhh
iii
jjj
  • Run
txt_to_md -i text.txt -o output.md
  • output.md
## a
### bb

- ccc
  - ddd
  - eee
  - fff
- ggg
  - hhh
  - iii
  - jjj

Option

  • See by below command
txt_to_md -h
  • Output example if is_plane_text option uses

## a
### bb


- ccc

ddd
eee
fff

- ggg

hhh
iii
jjj

History

  • 0.1.1
    • Fix README
  • 0.1.0
    • Release first prototype
Commit count: 3

cargo fmt