md2gmi/README.md

58 lines
2.1 KiB
Markdown
Raw Normal View History

2021-07-10 08:43:04 +03:00
# md2gmi
2021-07-03 18:26:27 +03:00
2021-07-11 14:40:15 +03:00
Convert Markdown to Gemini [gemtext](https://gemini.circumlunar.space/docs/gemtext.gmi) with Go.
Working with streams and UNIX pipes, utilizing Go channels. Processing streams
2021-07-11 12:12:57 +03:00
line by line is probably slightly more complex than it needs to be as I was toying with channels and
state machines.
2021-07-04 07:31:51 +03:00
Internally md2gmi does a 1st pass that constructs the blocks of single lines for gemtext from one or
multiple lines of an input stream. These blocks are then streamed to the 2nd passes. The 2nd pass
will convert hugo front matters, links, fix headings etc. These stages/passes can be composed and
chained with go pipelines. The output sink is either a file or stdout.
2021-07-03 18:26:27 +03:00
2021-07-10 08:43:04 +03:00
## Usage
2021-07-03 18:26:27 +03:00
2021-07-04 07:31:51 +03:00
```plain
2021-07-03 18:26:27 +03:00
Usage of ./md2gmi:
2021-07-05 08:36:44 +03:00
-i string
2021-07-03 18:26:27 +03:00
specify a .md (Markdown) file to read from, otherwise stdin (default)
2021-07-04 10:03:37 +03:00
-o string
2021-07-03 18:26:27 +03:00
specify a .gmi (gemtext) file to write to, otherwise stdout (default)
```
### Example
go get github.com/n0x1m/md2gmi
cat file.md | md2gmi
md2gmi -i file.md -o file.gmi
2021-07-04 10:22:55 +03:00
2021-07-04 15:31:45 +03:00
The top part of this readme parses from
2021-07-04 10:22:55 +03:00
```markdown
2021-07-04 15:31:45 +03:00
Convert Markdown to Gemini [gemtext](https://gemini.circumlunar.space/docs/gemtext.gmi) markup with
Go. Working with streams and pipes for UNIX like behavior utilizing Go channels. Processing streams
line by line is slightly more complex than it needs to be as I'm playing with channels and state
machines here.
2021-07-04 10:22:55 +03:00
2021-07-04 15:31:45 +03:00
> this is
a quote
<!-- testing markdown, this should be deleted, below merged -->
See the [gemini
protocol](https://gemini.circumlunar.space/) and the [protocol
spec](https://gemini.circumlunar.space/docs/specification.gmi).
```
to
```markdown
2021-07-04 15:31:45 +03:00
Convert Markdown to Gemini gemtext[1] markup with Go. Working with streams and pipes for UNIX like behavior utilizing Go channels. Processing streams line by line is slightly more complex than it needs to be as I'm playing with channels and state machines here.
2021-07-04 10:22:55 +03:00
=> https://gemini.circumlunar.space/docs/gemtext.gmi 1: gemtext
2021-07-04 15:31:45 +03:00
> this is a quote
2021-07-04 10:50:08 +03:00
See the gemini protocol[1] and the protocol spec[2].
2021-07-04 10:22:55 +03:00
=> https://gemini.circumlunar.space/ 1: gemini protocol
=> https://gemini.circumlunar.space/docs/specification.gmi 2: protocol spec
```