特别注释和预处理
对于任何文档工具包(尤其是 PHP)来说,表单的注释是否
/*:[url=users/%id]:*/
会成为问题?或者还有其他评论预处理器吗? (与 http://code.google.com/p/caret/ 相关)
Is a comment of the form
/*:[url=users/%id]:*/
going to be a problem with any documentation toolkits out there (especially for PHP)? Or any other comment pre-preprocessors? (Related to http://code.google.com/p/caret/ )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照 phpDoc 的说法,这应该不是问题。
phpDoc 读取以
/**
开头定义的注释,而不是/*
。phpDoc 注释条目的一个示例是:
Which Should not防冲突与您所说的注释。
Going by phpDoc, that shouldn't be a problem.
phpDoc reads from comments defined with a starting
/**
, not/*
.An example of a phpDoc comment entry would be:
Which shouldn't clash with a comment that you have said.