TranslateProject/published/20230502.2 ⭐️⭐️ Generate web pages from Markdown with Docsify-This.md

168 lines
8.6 KiB
Markdown
Raw Normal View History

2023-05-31 20:45:05 +08:00
[#]: subject: "Generate web pages from Markdown with Docsify-This"
[#]: via: "https://opensource.com/article/23/5/docsify-markdown-html"
[#]: author: "Paul Hibbitts https://opensource.com/users/paulhibbitts"
[#]: collector: "lkxed"
[#]: translator: "chai001125"
[#]: reviewer: "wxy"
[#]: publisher: "wxy"
[#]: url: "https://linux.cn/article-15884-1.html"
2023-05-31 20:45:05 +08:00
使用 Docsify-This 从 Markdown 文件生成网页
======
![][0]
2023-05-31 20:45:05 +08:00
> 这个开源工具可以轻松将 Markdown 转换为网页。
将 Markdown 文件直接变成网页,还无需搭建网站和生成过程,写完文档即可直接发布,你对这个内容感兴趣吗?你是否希望将 Markdown 或 HTML 自由地嵌入到多个平台(如内容管理系统或学习管理系统)中?由 [Docsify.js][2] 构建的开源项目 [Docsify-This][1] 提供了一种简单的方法来发布、分享和复用 Markdown 文件内容。
2023-05-31 20:45:05 +08:00
### Docsify-This 是什么?
使用 Docsify-This你可以立即将任何 Markdown 文件转换为响应式的独立网页。你还可以将多个 Markdown 文件链接起来,以创建一个简单的网站。网页设计师可以简单地通过点击 Web 页面生成器界面或改变网页的地址参数(即 URL来更改所显示页面的视觉外观。在创建自己的 Markdown 文件内容时,你还可以使用一组提供的 Markdown CSS 类。此外,如果你使用 Codeberg 或 GitHub 仓库存储 Markdown 文件的话,每个页面都会自动提供一个 “<ruby>编辑此页面<rt>Edit this Page</rt></ruby>” 的链接,以支持协同创作。
2023-05-31 20:45:05 +08:00
并且 Docsify-This 是开源的,因此你可以使用自定义域名托管 Docsify-This 实例,而不会有被平台锁定的风险。
2023-05-31 20:45:05 +08:00
### 使用 Docsify-This 网页生成器
2023-05-31 20:45:05 +08:00
要使用网页生成器,请先打开浏览器,导航到 [Docsify-This 网站][1] 或你在本地的实例。在 “<ruby>网页生成器<rt>Web Page Builder</rt></ruby>” 部分,输入 Codeberg 或 GitHub 上公共存储仓库中的一个 Markdown 文件的 URL其他 Git 主机可以通过 Docsify-This URL 参数进行使用,但不能在网页生成器中使用),然后点击 “<ruby>发布为独立网页<rt>Publish as Standalone Web Page</rt></ruby>” 的按钮,如下图所示。
2023-05-31 20:45:05 +08:00
![The Docsify-This web page builder interface][4]
Markdown 文件将呈现为一个独立的网页,并生成一个可复制和共享的 URL。以下是一个示例 URL
```
https://docsify-this.net/?basePath=https://raw.githubusercontent.com/hibbitts-design/docsify-this-one-page-article/main&homepage=home.md
```
Docsify-This 生成的网页非常适合嵌入,可以将 Docsify-This 页面的视觉样式调整到目标平台上去。
![Docsify-This rendered Markdown file][5]
### 渲染同一存储库中的其他文件
你也可以通过直接编辑 Docsify-This URL 参数 `homepage` 来渲染同一存储库中的其他 Markdown 文件。例如:
2023-05-31 20:45:05 +08:00
```
https://docsify-this.net/?basePath=https://raw.githubusercontent.com/hibbitts-design/docsify-this-one-page-article/main&homepage=anotherfile.md
```
### 修改网页的外观
你可以使用 [URL 参数][6] 更改 Docsify-This 中显示的任何 Markdown 文件的外观。例如,`font-family`(文本字体系列)、`font-size`(字体大小)、`link-color`(超链接颜色)和 `line-height`(行高)都是常见的 CSS 属性,同时也是 Docsify-This 中的有效参数:
```
https://docsify-this.net/?basePath=https://raw.githubusercontent.com/hibbitts-design/docsify-this-one-page-article/main&homepage=home.md&font-family=Open%20Sans,sans-serif
```
你也可以使用一组特殊的 [Markdown CSS 类][7] 来改变网页的外观。例如,你可以为一个链接添加“按钮类”:
2023-05-31 20:45:05 +08:00
```
[Required Reading Quiz due Jun 4th](https://canvas.sfu.ca/courses/44038/quizzes/166553 ':class=button')
```
这将产生一个按钮,而不是一个文本链接:
![A button rendered by Docsify-This][8]
除了 Docsify-This 支持的 Markdown CSS 类你也可以在Markdown 文件中使用自定义类。例如:
```
<style>
.markdown-section .mybutton, .markdown-section .mybutton:hover {
cursor: pointer;
color: #CC0000;
height: auto;
display: inline-block;
border: 2px solid #CC0000;
border-radius: 4rem;
margin: 2px 0px 2px 0px;
padding: 8px 18px 8px 18px;
line-height: 1.2rem;
background-color: white;
font-family: -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
font-weight: bold;
text-decoration: none;
}
</style>
[Custom CSS Class Button](# ':class=mybutton')
```
使用这个自定义类将生成这样的按钮:
![A custom button image rendered with Docsify-This][9]
### 在 Markdown 文件中包含 HTML 片段
正如标准 Markdown 所支持的那样,你可以在 Markdown 文件中包括 HTML 片段。这允许你在你的 HTML 渲染中添加布局元素。例如:
```
<div class="row">
<div class="column">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>
<div class="column">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>
</div>
```
### 使用 iFrame 嵌入 Docsify-This 网页
2023-05-31 20:45:05 +08:00
你可以在几乎所有的平台上使用 iFrame 嵌入 Docsify-This 网页。你还可以使用 URL 参数来确保你的嵌入内容与你的目标平台相匹配:
```
<p><iframe style="overflow: hidden; border: 0px #ffffff none; margin-top: -26px; background: #ffffff;" src="https://docsify-this.net/?basePath=https://raw.githubusercontent.com/paulhibbitts/cmpt-363-222-pages/main&homepage=home.md&font-family=Lato%20Extended,Lato,Helvetica%20Neue,Helvetica,Arial,sans-serif&font-size=1&hide-credits=true" width="800px" height="950px" allowfullscreen="allowfullscreen"></iframe></p>
```
![A Docsify-This page embedded in an LMS][10]
### 使用外部 URL 嵌入 Docsify-This
在某些学习管理系统中,包括开源的 [Moodle][11],或者专有的 [Canvas][12],你可以将外部网页链接到课程导航菜单。例如,你可以使用 Canvas 中的重定向工具来显示 Docsify-This 网页。
```
url=https://docsify-this.net/?basePath=https://raw.githubusercontent.com/paulhibbitts/cmpt-363-222-pages/main&homepage=resources.md&edit-link=https://github.com/paulhibbitts/cmpt-363-222-pages/blob/main/resources.md&font-family=Lato%20Extended,Lato,Helvetica%20Neue, Helvetica,Arial,sans-serif&font-size=1&hide-credits=true
```
### 整合 Docsify-This 和 Git
为了充分利用版本控制的好处,并使用 “<ruby>编辑此页面<rt>Edit this Page</rt></ruby>” 的链接进行协同工作,请将你的 Docsify-This Markdown 文件存储在 Codeberg 或 GitHub 的 Git 存储库中。一些开源工具为 Git 提供了一个图形界面,包括 [GitHub Desktop][13](最近已开源)、[Git-Cola][14] 和 [SparkleShare][15]。文本编辑器 VSCode 和 Pulsar Edit以前的 [Atom.io][16])也都有整合 Git 的功能。
2023-05-31 20:45:05 +08:00
### 轻松实现 Markdown 文件在网页发布
由于 Docsify 的存在,每个人都能享受到 Markdown 文件的在网上发布的好处。而且由于 Docsify-This 的出现,这个工作变得很容易。不妨在 [Docsify-This 网站][1] 上试试吧。
*题图MJ/f38f0a40-002b-4e93-9697-e008205c1211*
2023-05-31 20:45:05 +08:00
--------------------------------------------------------------------------------
via: https://opensource.com/article/23/5/docsify-markdown-html
作者:[Paul Hibbitts][a]
选题:[lkxed][b]
译者:[chai001125](https://github.com/chai001125)
校对:[wxy](https://github.com/wxy)
2023-05-31 20:45:05 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://opensource.com/users/paulhibbitts
[b]: https://github.com/lkxed/
[1]: https://docsify-this.net
[2]: https://docsify.js.org
[3]: https://opensource.com/downloads/cheat-sheet-markdown
[4]: https://opensource.com/sites/default/files/2023-04/docsify-this-web-page-builder.webp
[5]: https://opensource.com/sites/default/files/2023-04/docsify-this-rendered-markdown-file.webp
[6]: https://docsify-this.net/#/?id=page-appearance-url-parameters
[7]: https://docsify-this.net/#/?id=supported-markdown-css-classes
[8]: https://opensource.com/sites/default/files/2023-04/button.webp
[9]: https://opensource.com/sites/default/files/2023-04/custom-css-button.webp
[10]: https://opensource.com/sites/default/files/2023-04/docsify-this-iframe.webp
[11]: https://opensource.com/article/21/3/moodle-plugins
[12]: https://github.com/instructure/canvas-lms
[13]: https://github.com/desktop/desktop
[14]: https://opensource.com/article/20/3/git-cola
[15]: https://opensource.com/article/19/4/file-sharing-git
[16]: https://opensource.com/article/20/12/atom
[17]: https://opensource.com/downloads/git-tricks-tips
[0]: https://img.linux.net.cn/data/attachment/album/202306/07/000552k4mcssc66v44cfc8.jpg