diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-01-07 15:57:04 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-01-07 15:57:09 -0500 |
commit | 0602ad48f0e21ad604d938cd77c652adeb5eed87 (patch) | |
tree | ce72aa43c11b36753d31aefcf07ca0a9fc4205cc /doc | |
parent | 260178dcef927ecdddfba2a0b4097a3955aa7940 (diff) | |
download | roux-0602ad48f0e21ad604d938cd77c652adeb5eed87.tar.gz |
remove styling from generated html
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile index 3a30afb..e1b93eb 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -7,8 +7,7 @@ clean: html/%.html: %.txt mkdir html 2> /dev/null || true - ( echo '<link rel="stylesheet" href="/assets/css/txt.css" type="text/css" />'; \ - sed -ne '2{s,.*,<title>&</title>,;p;q}' $<; \ + ( sed -ne '2{s,.*,<title>&</title>,;p;q}' $<; \ echo '<div class="container">'; \ sed -ne '2{s,.*,<h2>&</h2>,;p;q}' $<; \ sed -e '1,3d' $< | ocaml txt/txt.ml; \ |