##// END OF EJS Templates
Merge pull request #3753 from ivanov/ctrl-c-for-kernel...
Merge pull request #3753 from ivanov/ctrl-c-for-kernel document Ctrl-C not working in ipython kernel

File last commit:

r11086:c137395d
r11675:01322e25 merge
Show More
Makefile
23 lines | 460 B | text/x-makefile | MakefileLexer
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608
all: tex/null.tplx tex/display_priority.tplx
# convert jinja syntax to tex
# cf http://flask.pocoo.org/snippets/55/
tex/%.tplx: %.tpl
@echo 'generating tex equivalent of $^: $@'
@echo '((= autogenerated file do not edit =))' > $@
@sed \
-e 's/{%/((*/g' \
-e 's/%}/*))/g' \
-e 's/{{/(((/g' \
-e 's/}}/)))/g' \
-e 's/{#/((=/g' \
-e 's/#}/=))/g' \
Matthias BUSSONNIER
lots of modification for latex
r9611 -e "s/tpl'/tplx'/g" \
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608 $^ >> $@
clean:
@echo "cleaning generated tplx files..."
@rm tex/*