7

是否有(最好是轻量级的方式)在 HTML 中包含降价文件的原始内容?

我正在使用 remark.js 创建幻灯片,我想将 markdown 文件与 HTML 分开,以便 HTML 非常简单(并且不会更改):

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Test</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://gnab.github.io/remark/downloads/remark-latest.min.js"></script>
  </head>
  <body>
    <textarea id="source">
      >>'paste' markdown file test.md<<
    </textarea>
      <script>
        var slideshow = remark.create({
          highlightStyle: 'darkula',
          highlightLines: true
        });
      </script>
  </body>
</html>

理想情况下,它在本地机器上离线运行(不运行 Web 服务器)。带有“粘贴”降价文件 test.md 的位显然不起作用(因此是我的问题)。我试过了:

  • object data="test.md"但这会产生丑陋的 iframe
  • 这个解决方案,但我只是得到一个空页面(我为 jQuery 使用了 CDN)。
4

1 回答 1

2

根据remarkjs wiki,您需要添加以下行以包含您的降价文件

var slideshow = remark.create({
  sourceUrl: 'markdown.md'
});

下面是一个完整的例子

<!DOCTYPE html>
<html>
  <head>
    <title>A title</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <style type="text/css">
      @import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
      @import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
      @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);

      body { font-family: 'Droid Serif'; }
      h1, h2, h3 {
        font-family: 'Yanone Kaffeesatz';
        font-weight: normal;
      }
      .remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
    </style>
  </head>
  <body>
    <script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript">
    </script>
    <script type="text/javascript">
      var slideshow = remark.create({
      sourceUrl: 'your_file.md'
      });
    </script>
  </body>
</html>
于 2017-05-12T16:32:13.267 回答