yard,如何将图像包含到文档中?

发布于 2024-11-05 18:32:08 字数 57 浏览 0 评论 0原文

我想将图像包含在院子生成的文档中,但无法在任何地方找到如何执行此操作...有人知道如何执行此操作吗?

I want to include image in yard-genereted documentation, but can't find anywhere how to do this... Does anyone know how to do this?

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

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

发布评论

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

评论(3

耀眼的星火 2024-11-12 18:32:08

您只需将 标记添加到文档中即可:

 # Blah-blah 
 # 
 # <img src=img/1.png />
 # @param [String] blah
 # @return [String] blah
 def foo(bar) 

 end

You can just add <img /> tag to your documentation:

 # Blah-blah 
 # 
 # <img src=img/1.png />
 # @param [String] blah
 # @return [String] blah
 def foo(bar) 

 end
凉月流沐 2024-11-12 18:32:08

使用 rdoc-image: links:

# Gets foo.
#
# rdoc-image:img/1.png
def foo(bar)
  "foo"
end

由 YARD 渲染为

<p>Gets foo.</p>
<p><img src="img/1.png"></p>

rdoc-images: 也适用于独立的 *.rdoc 文件。

Use rdoc-image: links:

# Gets foo.
#
# rdoc-image:img/1.png
def foo(bar)
  "foo"
end

is rendered by YARD into

<p>Gets foo.</p>
<p><img src="img/1.png"></p>

The rdoc-images: also works in standalone *.rdoc files.

高速公鹿 2024-11-12 18:32:08

根据您的标记格式,您可能必须使用其他机制。例如,如果您使用 Markdown,语法为 ![Alt text](/path/to/img.jpg)。在 RDoc 中,img 标签应该可以工作,但是您可以检查他们是否为此添加了特殊的标记语法。请注意,RDoc 可能(不确定)不喜欢 XHTML,您应该使用不带结尾的 /。

Depending on your markup format you may have to use another mechanism. For instance, if you use Markdown, the syntax is ![Alt text](/path/to/img.jpg). In RDoc, an img tag should work, but you can check if they have added a special markup syntax for this. Note that RDoc probably (not sure) doesn't like XHTML, you should use with no ending /.

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