1a0e61dc3f
gmnhg is the new program that generates a Gemini site from Hugo site content. It reads its input from content/, static/, and layouts/gmnhg/. Its output by default goes to output/. More doc is available in the program doc header.
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
// This file is part of gmnhg.
|
|
|
|
// gmnhg is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// gmnhg is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with gmnhg. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
// md2gmn converts Markdown text files to text/gemini. It panics on
|
|
// invalid input.
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
gemini "git.tdem.in/tdemin/gmnhg"
|
|
)
|
|
|
|
func main() {
|
|
var (
|
|
input string
|
|
file *os.File
|
|
)
|
|
flag.StringVar(&input, "f", "", "input file")
|
|
flag.Parse()
|
|
|
|
if input != "" {
|
|
var err error
|
|
file, err = os.Open(input)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
} else {
|
|
file = os.Stdin
|
|
}
|
|
text, err := ioutil.ReadAll(file)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
geminiContent, _, err := gemini.RenderMarkdown(text, gemini.WithMetadata)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
os.Stdout.Write(geminiContent)
|
|
}
|