File: attribute-reference.sh

package info (click to toggle)
flare-engine 1.14-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,388 kB
  • sloc: cpp: 47,760; java: 3,956; sh: 309; xml: 45; makefile: 10
file content (14 lines) | stat: -rwxr-xr-x 363 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

HTMLFILE="../attribute-reference.html"
PAGETITLE="Attribute Reference"

sed -e "s/PAGETITLE/$PAGETITLE/g" header.txt > "$HTMLFILE"
markdown -f -smarty "attribute-reference.md" >> "$HTMLFILE"
cd ../../
./extract_xml.sh | xsltproc wiki.xslt - | sed -e '1,3d' | markdown -f -smarty >> "docs/gen/$HTMLFILE"


cd "docs/gen"
cat footer.txt >> "$HTMLFILE"