change in the Documentation module to accomodate topics visualization

This commit is contained in:
krasimir
2015-11-29 08:01:07 +00:00
parent 59ae8b0aaa
commit 07b381ee63
16 changed files with 48 additions and 48 deletions

View File

@@ -391,9 +391,9 @@ oper
pp : Str -> Str = \s -> "<"+s+">";
lin
NoDefinition = {s=""};
MkDefinition d = {s="<p><b>Дефиниция:</b>"++d.s++"</p>"};
MkDefinitionEx d e = {s="<p><b>Дефиниция:</b>"++d.s++"</p><p><b>Пример:</b>"++e.s++"</p>"};
NoDefinition t = {s=t.s};
MkDefinition t d = {s="<p><b>Дефиниция:</b>"++t.s++d.s++"</p>"};
MkDefinitionEx t d e = {s="<p><b>Дефиниция:</b>"++t.s++d.s++"</p><p><b>Пример:</b>"++e.s++"</p>"};
lin
MkDocument d i e = {s = i.s1 ++ d.s ++ i.s2 ++ i.s3 ++ e.s} ;