I run into the same problem today and tried to find the version where the diff is minimal, so I wrote a script:
``` #!/bin/zsh versions=('3.7.3' '3.7.2' '3.7.0' '3.6.3' '3.6.2' '3.6.1' '3.6.0' '3.5.2' '3.5.1' '3.5.0' '3.4.5' '3.4.4' '3.4.3' '3.4.2' '3.4.1' '3.4.0') for i in $versions; do gem uninstall -a -x jekyll rouge gem install jekyll --version $i jekyll build git diff --stat git reset --hard HEAD done ``` Based on this the best version is: jekyll-3.6.3: ``` site/community.html | 2 +- site/sitemap.xml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) ``` What about changing the README.md [1] and specifying this exact version? Moreover changing the command to install it to: ``` gem install jekyll --version 3.6.3 ``` This installs the right rouge version as it is dependency. Finally I would give this command too as prequest: ``` gem uninstall -a -x jekyll rouge ``` Because gem keeps all the installed versions and only one is used. [1] https://github.com/apache/spark-website/blob/6a5fc2ccaa5ad648dc0b25575ff816c10e648bdf/README.md#L5 -- Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/ --------------------------------------------------------------------- To unsubscribe e-mail: dev-unsubscr...@spark.apache.org