-
Notifications
You must be signed in to change notification settings - Fork 431
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
Docs: Fix a table start to align with the stop #430
Conversation
Asciidoctor is a bit pickier about start and end delimiter and complains about this table because the start line has more `=`s than the end line. This removes `=`s from the start until it lines up with the end.
It looks like that file is generated. I'll dig. |
@nik9000 Thanks for this PR :-) Was this the only issue wrt Asciidoctor? By the way I'd love to switch over to Asciidoctor sooner than later, or at least make it another Make target, so it's easy to keep tabs on compatibility / add as separate CI task & so on. Your guidance was simply to call the script without the |
The Asciidoctor issues show up in two waves:
I've built a little suite of AsciiDoctor customizations to prevent some of these issues but some things have ended up being simpler to fix in the docs themselves.
So! Some things:
If you are ok with me making a PR job for you then you don't need to build the docs are part of your normal PR builds. You certainly can keep doing it though. And having a make target to use locally is super convenient.
There are two related things going on:
|
Yes, we're using --open in the build target for developer convenience, and we're overriding it in the CI job A PR to build the docs with based on your template/script as you're showing me for APM would be very welcome as well. ECS is a simple project and I can't see a reason I'd say no to that :-) Note however that the main CI for ECS is currently Travis CI. Not sure if this changes the amount of work you have to do for this doc generation Jenkins job? |
I don't think it does. |
Thanks for the merge @webmat! |
@webmat, should I do anything for the backport? |
@nik9000 I could have sworn I had done it already. I'll go do it, all I'll need from you is a thumbs up ;-) Thanks for the ping |
Asciidoctor is a bit pickier about start and end delimiter and complains about this table because the start line has more `=`s than the end line. This removes `=`s from the table start, so it lines up with the table end.
Asciidoctor is a bit pickier about start and end delimiter and complains
about this table because the start line has more
=
s than the end line.This removes
=
s from the start until it lines up with the end.