diff options
Diffstat (limited to 'mustache/src/Text/Mustache/Compile.hs')
| -rw-r--r-- | mustache/src/Text/Mustache/Compile.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mustache/src/Text/Mustache/Compile.hs b/mustache/src/Text/Mustache/Compile.hs index 8079d6c..8e8b676 100644 --- a/mustache/src/Text/Mustache/Compile.hs +++ b/mustache/src/Text/Mustache/Compile.hs @@ -118,6 +118,7 @@ getPartials = join . fmap getPartials' getPartials' :: Node Text -> [FilePath] getPartials' (Partial _ p) = return p getPartials' (Section _ n) = getPartials n +getPartials' (ExistingSection _ n) = getPartials n getPartials' (InvertedSection _ n) = getPartials n getPartials' _ = mempty |
