aboutsummaryrefslogtreecommitdiff
path: root/docs/_config.yml
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-09-18 10:30:17 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-09-18 10:30:17 -0700
commit3ad4176cf980591469997a8a612bf422c90f86fd (patch)
tree90d4761f1feba02ddb97d4fa91c84bc9d38470d2 /docs/_config.yml
parent3447d100900af15a7340a2f6a5430ffb6d9c6c23 (diff)
downloadspark-3ad4176cf980591469997a8a612bf422c90f86fd.tar.gz
spark-3ad4176cf980591469997a8a612bf422c90f86fd.tar.bz2
spark-3ad4176cf980591469997a8a612bf422c90f86fd.zip
SPARK-3579 Jekyll doc generation is different across environments.
This patch makes some small changes to fix this problem: 1. We document specific versions of Jekyll/Kramdown to use that match those used when building the upstream docs. 2. We add a configuration for a property that for some reason varies across packages of Jekyll/Kramdown even with the same version. Author: Patrick Wendell <pwendell@gmail.com> Closes #2443 from pwendell/jekyll and squashes the following commits: 54ee2ab [Patrick Wendell] SPARK-3579 Jekyll doc generation is different across environments.
Diffstat (limited to 'docs/_config.yml')
-rw-r--r--docs/_config.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/_config.yml b/docs/_config.yml
index d3ea2625c7..7bc3a78e2d 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -3,6 +3,11 @@ markdown: kramdown
gems:
- jekyll-redirect-from
+# For some reason kramdown seems to behave differently on different
+# OS/packages wrt encoding. So we hard code this config.
+kramdown:
+ entity_output: numeric
+
# These allow the documentation to be updated with nerw releases
# of Spark, Scala, and Mesos.
SPARK_VERSION: 1.0.0-SNAPSHOT