SQL 的重构文本?
我正在尝试使用 DocUtils 和 reStructuredText 来注释 SQL 代码。当我将标记包含在多行注释中时,我可以让它工作。然后我使用 --Some text:: 来介绍每个代码块。
我无法使内部超链接发挥作用。我想写 -- .. 步骤1_: 但由于主要注释,解析器会忽略这一点。使用多线样式也会失败。有办法让它发挥作用吗?
这是一个例子:
/*
==========
this query
==========
:Author: Me
Outline
==========
- Create table 1
- Create table 2
- Output the result
*/
-- _Step1: build the table::
create table table1
-- _Step2: use Step1_ to build table 2::
create table table2
I am trying to use DocUtils and reStructuredText to comment SQL code. I can get this to work when I include the markup inside multi-line comments. I then use --Some text:: to introduce each block of code.
I cannot get internal hyperlinks to work. I would like to write
-- .. Step1_:
but the parser ignores this because of the leading comment. Using a multi-line style also fails. Is there a way to get this to work?
Here's an example:
/*
==========
this query
==========
:Author: Me
Outline
==========
- Create table 1
- Create table 2
- Output the result
*/
-- _Step1: build the table::
create table table1
-- _Step2: use Step1_ to build table 2::
create table table2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 Sphinx 来重组文本。例如,内部超链接的语法是:
I use Sphinx for restructure text. The syntax for internal hyperlinks would be, for example,
code-block
由docutils
版本0.10
支持,也可能是0.9
。code-block
supported bydocutils
version0.10
or may be0.9
.