using Xunit;
namespace MfGames.Markdown.Gemtext.Tests.PythonInspired
{
/// <summary>
/// https://github.com/makeworld-the-better-one/md2gemini/blob/master/tests/test_codeblock.py
/// </summary>
public class CodeBlockPythonTests
[Fact]
public void EndsWithNoNewLines()
string input = string.Join(
"\n",
"Non code block",
"",
" code block here");
string expected = string.Join(
"```",
"code block here",
"```");
string actual = MarkdownGemtext.ToGemtext(input);
Assert.Equal(expected, actual);
}
public void NoExtraNewline()
" code block here",
"More non code");
[Fact(Skip = "Not sure how to implement or justification of this one")]
public void WithExtraNewline()