Implement text styles.

- NEU: Überschriften und pathologische Werte werden jetzt besonders ausgezeichnet (fett).
This commit is contained in:
Daniel Kraus
2015-08-15 20:14:24 +02:00
parent 4cb2999297
commit 92a8faa972
8 changed files with 113 additions and 29 deletions

View File

@ -163,7 +163,9 @@ namespace zaaReloaded2.Formatter
);
if (!LabItem.IsNormal)
{
output = String.Format("<b>{0}</b>", output);
output = String.Format(
"<b>{0}</b>",
output);
}
formatter.Write(output);