コード例 #1
0
ファイル: ListTests.cs プロジェクト: ofirgeller/MarkdownLog
 public void TestSpecialMarkDownCharactersAreAutomaticallyEncoded()
 {
     var list = new BulletedList(
         @"The underscore (_), backtick (`), asterisk (*) and backslash (\) have special meanings in Unicode",
         "These will be encoded by default so there are no surprises caused by your automatically generated Markdown containing special characters",
         "For example, variable_names_with_underscores and formula x = 1*2**3**4");
     list.WriteToTrace();
 }
コード例 #2
0
ファイル: ListTests.cs プロジェクト: ofirgeller/MarkdownLog
 public void TestListCanHaveNoItems()
 {
     var list = new BulletedList();
     list.WriteToTrace();
 }