如何在octopress中创建下载链接

时间:2012-09-26 15:05:29

标签: octopress

我正在为我的博客使用Octopress,需要创建一个下载文本文件的链接。

有一个名为include_code的内置插件可以呈现链接,但也会显示该文件。我只想要链接。有谁知道我怎么能这样做?

1 个答案:

答案 0 :(得分:6)

将您的文字文件放在source/downloads/code

然后您可以使用markdown语法显示如下链接:

[link name](url for the txt file)

网址为{your blog url}/downloads/code/{name of txt file}

这是从include_code插件派生而来的,该插件还显示了每个代码列表的下载链接。

更新: 要在HTML中执行此操作,您可以使用

<a href ="{your blog url}/downloads/code/{name of txt file}">Text File</a>