无效降价的示例是什么?

发布于 2024-10-13 05:27:18 字数 107 浏览 1 评论 0原文

我正在为一个模型编写单元测试,该模型的属性被解释为降价。我想测试一下,如果降价无效,则该对象无效 - 但它是一种非常宽容的语法,到目前为止我尝试过的所有内容都被证明是有效的降价!无效降价的示例是什么?

I'm writing unit tests for a model with an attribute that's interpreted as markdown. I'd like to test that if the markdown is invalid, then the object is invalid - but it's such a forgiving syntax that everything I've tried so far turns out to be valid markdown! What's an example of some invalid markdown?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

满身野味 2024-10-20 05:27:18

我没有广泛使用 Markdown,但我的印象是,不可能只编写“无效”的 Markdown,而不会执行您想要的操作。就像当它不知道该怎么做时不会抛出错误,而是将其视为纯文本。

在不同的路径上,人们可能会编写一个脚本来尝试识别用户可能不想要的东西,例如,如果有人输入 **test* 他们可能想要 *test*< /code> 或 **测试**

I haven't used markdown extensively but i was under the impression that it is impossible to write "invalid" markdown only markdown that wont do what you want it to. As in instead of throwing an error when it doesn't know what to do it just treats it as plain text.

On a different path one could probably write a script to try and identify things that the user probably didn't intend, for example if someone entered **test* they probably intended *test* or **test**

念﹏祤嫣 2024-10-20 05:27:18

所有字符串都是有效的降价。

All strings are valid markdown.

她比我温柔 2024-10-20 05:27:18

如果所有文本都是 Markdown,反之亦然,那么我认为无效 Markdown 的一个示例是您正在使用的编码中的无效文本,即无效的 UTF-8、无效的 ASCII 或无效的 ISO-8859-1。

If all text is markdown and vice versa, then I suppose one example of invalid markdown would be invalid text in the encoding that you are using, i.e. invalid UTF-8, invalid ASCII or invalid ISO-8859-1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文