以下字符串将正确地从降价列表转换为 HTML 列表:
string list = "* Item1\n* Item 2";
但是,如果我有其他字符串,然后将列表附加到它,输出是意外的。
string text = "here is some **bold** text " + list;
输出:
here is some <b>bold</b> text * Item1 * Item 2
似乎问题是试图转换存在于其他文本块中的列表?如果这是问题所在,那是预期的行为吗?
以下字符串将正确地从降价列表转换为 HTML 列表:
string list = "* Item1\n* Item 2";
但是,如果我有其他字符串,然后将列表附加到它,输出是意外的。
string text = "here is some **bold** text " + list;
输出:
here is some <b>bold</b> text * Item1 * Item 2
似乎问题是试图转换存在于其他文本块中的列表?如果这是问题所在,那是预期的行为吗?