Commit 4e3a86ef authored by Dave Syer's avatar Dave Syer

Add table support to markdown

parent 970cb9b0
...@@ -3,5 +3,7 @@ lsi: false ...@@ -3,5 +3,7 @@ lsi: false
pygments: true pygments: true
github: https://github.com/SpringSource/spring-boot github: https://github.com/SpringSource/spring-boot
markdown: redcarpet markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
project: project:
version: 0.5.0.BUILD-SNAPSHOT version: 0.5.0.BUILD-SNAPSHOT
#!/bin/bash -e #!/bin/bash -e
echo $* | grep -q "\-x" && set -x
if [ -e "$HOME/.rvm/scripts/rvm" ]; then if [ -e "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm" source "$HOME/.rvm/scripts/rvm"
rvm 1.9.3 rvm 1.9.3
...@@ -44,13 +46,13 @@ function fail { ...@@ -44,13 +46,13 @@ function fail {
echo is missing ruby or gem dependencies. echo is missing ruby or gem dependencies.
echo Please ensure that you have installed ruby 1.9.3 echo Please ensure that you have installed ruby 1.9.3
echo and execute echo and execute
echo " $" (cd $PAGES_HOME; bundle) echo " $ (cd $PAGES_HOME; bundle)"
echo before trying again echo before trying again
} }
trap fail EXIT trap fail EXIT
if ! [ -z $PAGES_HOME/Gemfile.lock ]; then if ! [ -e $PAGES_HOME/Gemfile.lock ]; then
exit 1 exit 1
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment