Sha256: 6376afac2f731eee3b37ea19c829f96b22ab3288151ebfd84278a565fcebce86
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
#!/bin/sh echo "Generate HTML Content of MyBlank project - Style Foundation" echo "Create Project" rm -rf ~hyla/MyBlankProject hyla new -b -d ~/hyla/MyBlankProject --force cd ~/hyla/MyBlankProject echo "Add asciidoc files" hyla new -b -d MyBlankProject --force hyla create --t asciidoc --a article --d ~/hyla/MyBlankProject hyla create --t asciidoc --a book --d ~/hyla/MyBlankProject hyla create --t asciidoc --a image --d ~/hyla/MyBlankProject hyla create --t asciidoc --a audio --d ~/hyla/MyBlankProject hyla create --t asciidoc --a video --d ~/hyla/MyBlankProject hyla create --t asciidoc --a source --d ~/hyla/MyBlankProject hyla create --t asciidoc --a table --d ~/hyla/MyBlankProject echo "Change style in the _config.yaml file" ruby -i.bak -pe 'sub(%r{style: liberation},"style: foundation")' _config.yaml #hyla generate -r adoc2html -s ~/hyla/MyBlankProject/ -d ~/hyla/MyBlankProject/generated_content --style liberation #hyla generate -r adoc2html -s ~/hyla/MyBlankProject/ -d ~/hyla/MyBlankProject/generated_content --style github hyla generate -r adoc2html -s ~/hyla/MyBlankProject/ -d ~/hyla/MyBlankProject/generated_content -y foundation echo "Revert _config.yaml file" mv _config.yaml.bk _config.yaml
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hyla-1.0.3 | documentation/scripts/generate_content_myblankproject_other_style.sh |