From 3081bce9632e29c7ecebf547360cc78c170470cd Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Tue, 20 Jun 2017 09:55:54 +0200 Subject: Auto generate cover from book.json fields. Change-Id: I678df3c78ac04fb2f7a8b3f843103d933c95d73c Signed-off-by: Sebastien Douheret --- docs/resources/make_cover.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/resources/make_cover.sh b/docs/resources/make_cover.sh index 13ba4f0c..1026ecbd 100755 --- a/docs/resources/make_cover.sh +++ b/docs/resources/make_cover.sh @@ -3,7 +3,7 @@ DOCS_DIR=$(cd $(dirname $0)/.. && pwd) BOOKFILE=$DOCS_DIR/../book.json TITLE=$(grep '"title":' $BOOKFILE | cut -d'"' -f 4) -SUBTITLE="" +SUBTITLE=$(grep '"subtitle":' $BOOKFILE | cut -d'"' -f 4) VERSION="Version $(grep '"version":' $BOOKFILE | cut -d'"' -f 4)" DATE=$(grep '"published":' $BOOKFILE | cut -d'"' -f 4) @@ -15,6 +15,7 @@ DATE=$(grep '"published":' $BOOKFILE | cut -d'"' -f 4) cat $(dirname $0)/cover.svg | sed -e "s/{title}/$TITLE/g" \ -e "s/font-size:87.5px/font-size:54px/g" \ -e "s/{subtitle}/$SUBTITLE/g" \ + -e "s/font-size:62.5px/font-size:40px/g" \ -e "s/{version}/$VERSION/g" \ -e "s/{date}/$DATE/g" \ > /tmp/cover.svg -- cgit 1.2.3-korg