在尝试以下任一选项之前的一些注意事项
即使在大多数情况下,选项0
也会增加构建时间,--incremental
而且实际上选项1
可能会被使用,但是,如果您在客户端可能无法访问 CDN 的网络上进行部署,那么这以及占用的额外空间可能值得付出代价。
这两个选项都已在私有服务器上进行了测试,并在项目文件中设置kramdown
了降价解释器;请参阅Soham Bhattacharyya的回答步骤及其前言,以及Caramdir的前两个代码块,了解这些位的操作方法。mathjax: true
_config.yml
2
选项0
下载并复制解压后的源码到project-name
- 下载源
cd ~
mkdir -p git/hub && cd git/hub
git clone --depth 1 https://github.com/mathjax/MathJax.git
- 在您的项目中创建一个目录路径并将文件复制
MathJax/unpacked
到该路径
cd ~
mkdir -p git/lan/project-name/assets/JS_3rd_Party/MathJax
cp -r git/hub/MathJax/unpacked/* git/lan/project-name/assets/JS_3rd_Party/MathJax/
- 将源添加到
git
跟踪
cd git/lan/project-name/
git add assets/JS_3rd_Party/MathJax
git commit -m 'Added MathJax.js unpacked source to git tracking'
- 编写包含文件
tee ./_includes/MathJax.html 1>/dev/null <<EOF
{%- if jekyll.environment == 'production' and site.mathjax == true -%}
<script type="text/javascript" src="{{'/assets/javascripts/JS_3rd_Party/latest.js?config=TeX-AMS-MML_HTMLorMML' | relative_url}}"></script>
{%- elsif jekyll.environment != 'production' and site.mathjax == true -%}
<script type="text/javascript" src="{{'/assets/javascripts/JS_3rd_Party/MathJax.js?config=TeX-AMS-MML_HTMLorMML' | relative_url}}"></script>
{%- endif -%}
EOF
私有服务器构建将使用MathJax.js
where 作为生产环境 (GitHub) 将使用latest.js
上述 Liquid if
... elsif
...endif
语句。
- 写个帖子测试一下
tee ./_posts/$(date +'%Y-%d-%m')-math-tests.markdown 1>/dev/null <<EOF
---
layout: post
title: "Math Tests"
date: $(date +'%Y-%d-%m %H:%M:%S %z')
categories: math
---
{%- include MathJax.html -%}
<span>
for $x,y,z \in \{1, 2,\dots 9\}$
</span>
<span>
$$
\sum_{i=1}^n X_n
$$
</span>
EOF
我没有尝试过没有<span>
s 因为cboettig的建议似乎完全可以解决问题。span
此外, s 中的额外换行符没有错误,没有它们,渲染输出仍然存在问题。
- 将这些最新文件添加到
git
跟踪
git add _posts/$(date +'%Y-%d-')math-tests.markdown
git add _includes/MathJax.html
- 在本地构建,或在远程服务器上推送和构建
bundle exec jekyll build --destination /tmp/www/project-name --config _config.yml --incremental
仅用于使用 CDN(内容交付网络)的选项1
复制latest.js
见Option 0
步骤1.
为第三方 JavaScript 创建一个目录路径并复制MathJax/unpacked/latest.js
到那里
cd ~
mkdir -p git/lan/project-name/assets/JS_3rd_Party/MathJax
cp git/hub/MathJax/unpacked/latest.js git/lan/project-name/assets/JS_3rd_Party/MathJax/
- 编写包含文件
cd git/lan/project-name
tee ./_includes/MathJax.html 1>/dev/null <<EOF
<script type="text/javascript" src="{{'/assets/javascripts/JS_3rd_Party/latest.js?config=TeX-AMS-MML_HTMLorMML' | relative_url}}"></script>
EOF
见Option 0
步骤5.
将这三个文件添加到git
跟踪中
git add _includes/MathJax.html
git add _posts/$(date +'%Y-%d-')math-tests.markdown
git add assets/JS_3rd_Party/MathJax
git commit -m 'Added `MathJax.html`, `latest.js`, and a test post to git tracking'
- 请参阅本地构建
Option 0
步骤7.
对于任何一个选项
如果部署在私有服务器上,您可能还需要baseurl
在项目_config.yml
文件中进行定义,尤其是在模拟username.tld/project-name
GitHub 在您的私有服务器上使用的 URL 方案时。
如果同时部署到私有服务器和 GitHub,最好使用单独的配置文件并在构建问题时--config _config.yml,_config_baseurl.yml
,例如...
# Write the special config file
tee ./_config_baseurl.yml 1>/dev/null <<EOF
baseurl: "project-name"
EOF
# Build with extra config
bundle exec jekyll build --destination /tmp/www/project-name --config _config.yml,_config_baseurl.yml --incremental
希望这有助于通过包含加载资产。