From 80854f4c44517ef5c6aa4ffafbc66218e4ff975d Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Fri, 2 Aug 2019 18:40:51 +0200 Subject: [PATCH] extended DocumentationIce to V2 --- doc/example-tables.gfs | 1 + src/icelandic/DocumentationIceFunctor.gf | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/example-tables.gfs b/doc/example-tables.gfs index e4420b6ef..45111c36b 100644 --- a/doc/example-tables.gfs +++ b/doc/example-tables.gfs @@ -3,3 +3,4 @@ gt MkDocument (NoDefinition "") (InflectionN ?) "" | l | wf -file="example-tables.html" gt MkDocument (NoDefinition "") (InflectionA ?) "" | l | wf -append -file="example-tables.html" gt MkDocument (NoDefinition "") (InflectionV ?) "" | l | wf -append -file="example-tables.html" +gt MkDocument (NoDefinition "") (InflectionV2 ?) "" | l | wf -append -file="example-tables.html" diff --git a/src/icelandic/DocumentationIceFunctor.gf b/src/icelandic/DocumentationIceFunctor.gf index 9ad0808e1..b16eb68df 100644 --- a/src/icelandic/DocumentationIceFunctor.gf +++ b/src/icelandic/DocumentationIceFunctor.gf @@ -93,25 +93,25 @@ lin paragraph (verbExample (S.mkCl S.she_NP v)) ; s2 = inflVerb v } ; -{- + InflectionV2 v = { t = "v" ; s1 = heading1 (heading verb_Category) ++ - paragraph (verbExample (S.mkCl S.she_NP v S.something_NP)) ; + paragraph (verbExample (S.mkCl S.she_NP v S.i_NP)) ; s2 = inflVerb v } ; InflectionV3 v = { t = "v" ; s1 = heading1 (heading verb_Category) ++ - paragraph (verbExample (S.mkCl S.she_NP v S.something_NP S.something_NP)) ; + paragraph (verbExample (S.mkCl S.she_NP v S.it_NP S.i_NP)) ; s2 = inflVerb v } ; - +{- InflectionV2V v = { t = "v" ; s1 = heading1 (heading verb_Category) ++ - paragraph (verbExample (S.mkCl S.she_NP (lin V2V v) S.we_NP (S.mkVP (L.sleep_V)))) ; + paragraph (verbExample (S.mkCl S.she_NP v S.we_NP (S.mkVP (L.sleep_V)))) ; s2 = inflVerb v } ;