你如何评论你的 RTML 代码?

发布于 2024-07-08 05:50:17 字数 185 浏览 6 评论 0原文

<咆哮模式> 你见过不允许在代码中添加注释的编程语言吗? 欢迎来到 RTML 的世界(愿它在地狱中燃烧)!

问题

您采用的注释 RTML 代码的最佳技术是什么(如果有)?

谢谢你!

<rant-mode>
Have you ever seen a programming language that does not allow to add comments to the code? Welcome to the world of RTML (may it burn in hell)!
</rant-mode>

Question

What is the best technique (if any) you've adopted to comment your RTML code?

Thank you!

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

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

发布评论

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

评论(3

神回复 2024-07-15 05:50:17

要在 RTML 中创建评论,请单击您的模板,然后单击“新建”,然后在“简单”文本框中输入(在引号中)您的评论。

"**************** My comment and stuff ******************"

如果您想注释掉一段代码,请将代码插入到对多个 RTML 语句进行分组的 MULTI 后面,然后插入 WHEN nilWHEN nil 之后的所有内容都不会被执行。

WHEN nil
    MULTI
        TEXT @a-random-variable

To create a comment in RTML, click on your template, then New, and in the textbox that says Simple, type (in quotes) your comment.

"**************** My comment and stuff ******************"

If you want to comment out a piece of code, insert your code after a MULTI which groups multiple RTML statements and then a WHEN nil. Everything after the WHEN nil will never be executed.

WHEN nil
    MULTI
        TEXT @a-random-variable
温柔少女心 2024-07-15 05:50:17

我刚刚浏览了 RTML,我不想直接使用它(它非常丑陋)。

似乎最好的方法是拥有源文件和一个预处理器,该预处理器会删除注释并可能包含快捷方式和新功能,然后自动上传 RTML(甚至可能是 RTML 的芥末)。

您需要用真正的语言来做到这一点,或者全力以赴使用 ANTLR 之类的东西。

I just had a look at RTML,I wouldn't like working with it directly (it's very ugly).

It seems that the best way would be to have source files, and a preprocessor that strips comments and probably includes shortcuts and new features, then automatically uploads the RTML (maybe even a wasabi for RTML).

You would need to do that in a real language, or go full throttle with something like ANTLR.

天涯离梦残月幽梦 2024-07-15 05:50:17

评论
将评论插入当前页面。 相当于HTML的
构造。 评论只是一些成为页面 HTML 一部分的文本
源但不显示在屏幕上。 评论的实际文本
必须是用双引号括起来的字符串(或文本类型的变量)。

示例:

 COMMENT "nosearch"
 HEAD
 TITLE "untitled"
 BODY
 TEXT "This

请参阅:可用 RTML 书籍和资源列表

COMMENT
Inserts a comment into the current page. Equivalent to HTML’s
construct. A comment is just some text that becomes part of the page’s HTML
source but does not get displayed on the screen. The actual text of the comment
must be a string enclosed in double quotes (or a variable of type text).

Example:

 COMMENT "nosearch"
 HEAD
 TITLE "untitled"
 BODY
 TEXT "This

please see: List of available RTML books and resources

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