Browse Source

Add table support to markdown

pull/24/merge
Dave Syer 13 years ago
parent
commit
4e3a86eff4
  1. 2
      src/pages/_config.yml
  2. 6
      src/pages/build.sh

2
src/pages/_config.yml

@ -3,5 +3,7 @@ lsi: false @@ -3,5 +3,7 @@ lsi: false
pygments: true
github: https://github.com/SpringSource/spring-boot
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
project:
version: 0.5.0.BUILD-SNAPSHOT

6
src/pages/build.sh

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
#!/bin/bash -e
echo $* | grep -q "\-x" && set -x
if [ -e "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm"
rvm 1.9.3
@ -44,13 +46,13 @@ function fail { @@ -44,13 +46,13 @@ function fail {
echo is missing ruby or gem dependencies.
echo Please ensure that you have installed ruby 1.9.3
echo and execute
echo " $" (cd $PAGES_HOME; bundle)
echo " $ (cd $PAGES_HOME; bundle)"
echo before trying again
}
trap fail EXIT
if ! [ -z $PAGES_HOME/Gemfile.lock ]; then
if ! [ -e $PAGES_HOME/Gemfile.lock ]; then
exit 1
fi

Loading…
Cancel
Save