We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68f1959 + 73e582b commit 9635f9bCopy full SHA for 9635f9b
.travis.yml
@@ -1,3 +1,12 @@
1
-install: gem install kramdown
+language: python
2
+python:
3
+ - "2.7"
4
+sudo: false
5
+install:
6
+ - gem install kramdown
7
+ - git clone --depth=1 --branch=master https://github.com/tabatkins/bikeshed.git ./bikeshed
8
+ - pip install pygments
9
+ - pip install --editable ./bikeshed
10
+ - bikeshed update
11
12
script: make
Makefile
@@ -1,7 +1,7 @@
all: clean index.html index.bikeshed.html
clean:
- rm -rf index.html
+ rm -rf index.html index.bikeshed.html
index.html: spec.markdown template.erb
sed -e 's/\[\[/\\[\\[/g' -e 's/\]\]/\\]\\]/g' ./spec.markdown | kramdown --parse-block-html --template='template.erb' > index.html
0 commit comments