now the Documentation module contains a category Definition which is used to generate definitions and examples for words in the App.

This commit is contained in:
krasimir
2015-11-16 14:57:32 +00:00
parent fae5cba926
commit 80ccd0493d
16 changed files with 135 additions and 27 deletions

View File

@@ -5,6 +5,7 @@ abstract Documentation = Cat ** {
cat
Inflection ; -- inflection table
Definition ;
Document ;
Tag ;
@@ -29,7 +30,12 @@ fun
InflectionPrep : Prep -> Inflection ;
fun
MkDocument : String -> Inflection -> String -> Document ;
NoDefinition : Definition ;
MkDefinition : String -> Definition ;
MkDefinitionEx : String -> String -> Definition ;
fun
MkDocument : Definition -> Inflection -> String -> Document ;
MkTag : Inflection -> Tag ;
}