你如何评论你的 RTML 代码?
<咆哮模式> 你见过不允许在代码中添加注释的编程语言吗? 欢迎来到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要在 RTML 中创建评论,请单击您的模板,然后单击“新建”,然后在“简单”文本框中输入(在引号中)您的评论。
如果您想注释掉一段代码,请将代码插入到对多个 RTML 语句进行分组的
MULTI
后面,然后插入WHEN nil
。WHEN nil
之后的所有内容都不会被执行。To create a comment in RTML, click on your template, then
New
, and in the textbox that says Simple, type (in quotes) your comment.If you want to comment out a piece of code, insert your code after a
MULTI
which groups multiple RTML statements and then aWHEN nil
. Everything after theWHEN nil
will never be executed.我刚刚浏览了 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.
评论
将评论插入当前页面。 相当于HTML的
构造。 评论只是一些成为页面 HTML 一部分的文本
源但不显示在屏幕上。 评论的实际文本
必须是用双引号括起来的字符串(或文本类型的变量)。
示例:
请参阅:可用 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:
please see: List of available RTML books and resources