diff options
author | Marcel Klehr <mklehr@gmx.net> | 2012-10-31 18:12:12 +0100 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2012-10-31 18:12:12 +0100 |
commit | f676e90199a90235347467801f1d646da60cf8f7 (patch) | |
tree | fcc6d3ef6102c09beabb84d9334e9c0181f947be | |
parent | 437937c3504772ee2dbb56da84d92fe1db8e901b (diff) | |
download | etherpad-lite-f676e90199a90235347467801f1d646da60cf8f7.zip |
[docs] Fix assets: Rename doc/_assets to doc/assets
github's jekyll would do some dark magic with '_assets'.
We don't want that.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | doc/assets/style.css (renamed from doc/_assets/style.css) | 0 | ||||
-rw-r--r-- | doc/template.html | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,13 +1,13 @@ doc_sources = $(wildcard doc/*/*.md) $(wildcard doc/*.md) outdoc_files = $(addprefix out/,$(doc_sources:.md=.html)) -docassets = $(addprefix out/,$(wildcard doc/_assets/*)) +docassets = $(addprefix out/,$(wildcard doc/assets/*)) VERSION = $(shell node -e "console.log( require('./src/package.json').version )") docs: $(outdoc_files) $(docassets) -out/doc/_assets/%: doc/_assets/% +out/doc/assets/%: doc/assets/% mkdir -p $(@D) cp $< $@ diff --git a/doc/_assets/style.css b/doc/assets/style.css index fe1343af..fe1343af 100644 --- a/doc/_assets/style.css +++ b/doc/assets/style.css diff --git a/doc/template.html b/doc/template.html index 6416da94..b91f3c16 100644 --- a/doc/template.html +++ b/doc/template.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <title>__SECTION__ - Etherpad Lite v__VERSION__ Manual & Documentation</title> - <link rel="stylesheet" href="_assets/style.css"> + <link rel="stylesheet" href="assets/style.css"> </head> <body class="apidoc" id="api-section-__FILENAME__"> <header id="header"> |