using Xunit;
namespace MfGames.Markdown.Gemtext.Tests
{
public class PlainTextTests
[Fact]
public void NormalText()
string input = "This is input.";
string expected = "This is input.";
string actual = MarkdownGemtext.ToGemtext(input);
Assert.Equal(expected, actual);
}
public void Paragraphs()
// Okay, this one isn't based on the test_plain.py, but seems
// useful to have while converting logic.
string input = string.Join(
"\n",
"Paragraph One",
string.Empty,
"Paragraph Two");
string expected = string.Join(
public void SoftBreakParagraphs()
"Paragraph",
"One",
" Three",
"Paragraph One Three",