Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Зиновьева Милана #224

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

crycrash
Copy link

No description provided.

Copy link

@xsitin xsitin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Просмотри спецификацию, в особенности разделы экранирование и взаимодействие тегов

Comment on lines 29 to 43
[Test]
public void Test_BoldInPartOfWord()
{
Md.Render("__нач__але").Should().Be("<strong>нач</strong>але");
Md.Render("сер__еди__не").Should().Be("сер<strong>еди</strong>не");
Md.Render("кон__це.__").Should().Be("кон<strong>це.</strong>");
}

[Test]
public void Test_BoldSeveralWords()
{
Md.Render("__нач__але").Should().Be("<strong>нач</strong>але");
Md.Render("сер__еди__не").Should().Be("сер<strong>еди</strong>не");
Md.Render("кон__це.__").Should().Be("кон<strong>це.</strong>");
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

одинаковые тесты

[Test]
public void Test_StandartHeading()
{
Md.Render("#aaaa").Should().Be("<h1>aaaa</h1>");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Абзац, начинающийся с "# ", выделяется тегом <h1> в заголовок.

Посмотри внимательно спецификацию

Comment on lines 10 to 15
Md.Render("\\aaa").Should().Be("\\aaa");
Md.Render("\\__aaa__\\").Should().Be("__aaa__");
Md.Render("\\_aaa_\\").Should().Be("_aaa_");
Md.Render("\\#aaa\\").Should().Be("#aaa");
Md.Render("\\\\#aa\\").Should().Be("\\#aa");
Md.Render("\\#aa").Should().Be("\\#aa");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Символ экранирования исчезает из результата, только если экранирует что-то.

Все эти кейсы неверны, последний слеш должен оставаться(т.к. ничего не экранирует), а первый при экранировании исчезать.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants