diff options
author | Joop Kiefte <ikojba@gmail.com> | 2018-12-31 21:40:58 +0100 |
---|---|---|
committer | Joop Kiefte <ikojba@gmail.com> | 2018-12-31 21:40:58 +0100 |
commit | 17e35aa8dbc5ddb5e3542a57f14dd16627d37d64 (patch) | |
tree | 54c4905d49cc5abfa9f63e2d402b035ac147a459 /rules/rules.go | |
parent | 32b146fc5411f8db35824c82e9cafc4cdb6f1d41 (diff) |
First working version. Fountain support is still very bad.
Diffstat (limited to 'rules/rules.go')
-rw-r--r-- | rules/rules.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rules/rules.go b/rules/rules.go index 07fe588..cd8e890 100644 --- a/rules/rules.go +++ b/rules/rules.go @@ -46,7 +46,7 @@ var Default = Set{ }, "paren": { Left: 3.6, - Width: 2, + Width: 4, }, "trans": { Left: 6, @@ -60,4 +60,8 @@ var Default = Set{ Left: 1.5, Width: 6, }, + "empty": { + Left: 1.5, + Width: 6, + }, } |