File: doc.go

package info (click to toggle)
golang-github-hhatto-gorst 0.0~git20181029.ca9f730-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 436 kB
  • sloc: makefile: 38
file content (22 lines) | stat: -rw-r--r-- 284 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
Go implementation of reStructuredText

Usage example:

	package main

	import (
		"github.com/hhatto/gorst"
		"os"
		"bufio"
	)

	func main() {
		p := rst.NewParser(nil)

		w := bufio.NewWriter(os.Stdout)
		p.ReStructuredText(os.Stdin, rst.ToHTML(w))
		w.Flush()
	}
*/
package rst