commit 04b7cc8

Artur Manuel  ·  2026-05-10 20:45:57 +0000 UTC
parent 7e3e04f
meta: add gitignore and editorconfig
3 files changed,  +27, -3
+7, -0
1@@ -0,0 +1,7 @@
2+[*.go]
3+indent_style = tab
4+indent_size = 8
5+
6+[Makefile]
7+indent_style = tab
8+indent_size = 8
+18, -1
 1@@ -1 +1,18 @@
 2-output/
 3+**
 4+!/cmd
 5+!/cmd/**
 6+!/ssg
 7+!/ssg/**
 8+!/templates
 9+!/templates/**
10+!/pages
11+!/pages/**
12+!/assets
13+!/assets/**
14+!/.gitignore
15+!/.editorconfig
16+!/Makefile
17+!/README.md
18+!/LICENSE
19+!/go.sum
20+!/go.mod
+2, -2
 1@@ -10,7 +10,7 @@ import (
 2 	"strings"
 3 
 4 	"github.com/yuin/goldmark"
 5-	meta "github.com/yuin/goldmark-meta"
 6+	"github.com/yuin/goldmark-meta"
 7 	"github.com/yuin/goldmark/parser"
 8 )
 9 
10@@ -99,4 +99,4 @@ func BuildPage(w io.Writer, name string, path string, page string, markdown gold
11 		return err
12 	}
13 	return nil
14-}
15+}