~dricottone/epub2html

494d6b55394b19378dda6b4a3b95960f64c7ee4b — Dominic Ricottone 1 year, 11 months ago f7d5416
Structure for test documents
2 files changed, 3 insertions(+), 1 deletions(-)

A .gitignore
M main.go
A .gitignore => .gitignore +2 -0
@@ 0,0 1,2 @@
epub2html
test_docs

M main.go => main.go +1 -1
@@ 107,7 107,7 @@ func dump_archive(filename string) error {
func main() {
	// process arguments

	if err := dump_archive("the_future_is_female.epub"); err != nil {
	if err := dump_archive("test_docs/the_future_is_female.epub"); err != nil {
		fmt.Printf("fatal error: %s\n", err)
	}
}