diff options
author | Joop Kiefte <ikojba@gmail.com> | 2019-01-12 23:59:52 +0100 |
---|---|---|
committer | Joop Kiefte <ikojba@gmail.com> | 2019-01-12 23:59:52 +0100 |
commit | ac581d91729026671d2e21d80a1f675ce8cb7882 (patch) | |
tree | e29dad6846755f8b731e8109c29d1f0a7cd1e098 /fountain | |
parent | e8e1394e0f50794d0558571c806e84c953ff1a31 (diff) |
Add comment to Scene variable
Diffstat (limited to 'fountain')
-rw-r--r-- | fountain/parse.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fountain/parse.go b/fountain/parse.go index a01b97f..79ced81 100644 --- a/fountain/parse.go +++ b/fountain/parse.go @@ -9,6 +9,8 @@ import ( "strings" ) +// Scene contains all the prefixes the scene detection looks for. +// This can be changed with the toml configuration in the rules package. var Scene = []string{"INT", "EXT", "EST", "INT./EXT", "INT/EXT", "EXT/INT", "EXT./INT", "I/E"} func last(out *lex.Screenplay, i int) *lex.Line { |