Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make pdf on OSX #152

Closed
t-cool opened this issue Jun 24, 2019 · 3 comments
Closed

make pdf on OSX #152

t-cool opened this issue Jun 24, 2019 · 3 comments

Comments

@t-cool
Copy link

t-cool commented Jun 24, 2019

I followed the steps here:
#134

$ make pdf
mkdir -p docs/
asciidoctor -b docbook45 -a numbered -d book -a data-uri!  src/index.adoc -o docs/clojurescript-unraveled.xml
asciidoctor: FAILED: missing converter for backend 'docbook45'. Processing aborted.
  Use --trace for backtrace
make: *** [docbook] Error 1

I made a search on 'docbook45' and found this repo:
https://github.com/asciidoctor/asciidoctor-backends/tree/master/haml/docbook45

Could anyone advice me how to fix this issue?
I'd appreciate your help.

@corasaurus-hex
Copy link

This is what worked for me: #153

@t-cool
Copy link
Author

t-cool commented Jul 2, 2019

@nate
Thanks a lot!
I'll give a try in that way and let you know the result.

@t-cool
Copy link
Author

t-cool commented Jul 2, 2019

I made it!
I made a search on my environment and found that I just need to change docbook45 to docbook in the MakeFile as follows:

docbook: setup
	asciidoctor -b docbook45 -a numbered -d book -a data-uri!  src/index.adoc -o dist/clojurescript-unraveled.xml
docbook: setup
	asciidoctor -b docbook -a numbered -d book -a data-uri!  src/index.adoc -o dist/clojurescript-unraveled.xml

@t-cool t-cool closed this as completed Jul 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants