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

Add a prototype for asciidoc #41

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open

Add a prototype for asciidoc #41

wants to merge 8 commits into from

Conversation

sean-
Copy link
Contributor

@sean- sean- commented Jul 27, 2017

@arekinath , can you give this a quick once over w/ your tooling. I had to go digging into the spec to see how multiple authors are supported (semicolon delimited list), but I don't know how the missing :email: attribute will impact things (or if that should also be a semicolon delimited list).

Feel free to merge if you approve.

@sean- sean- requested a review from arekinath July 27, 2017 18:17
@jclulow
Copy link
Contributor

jclulow commented Jul 27, 2017

I suspect we still want the YAML front matter block to be the same as it would be for a Markdown document?

@sean-
Copy link
Contributor Author

sean- commented Jul 28, 2017

@jclulow I looked at RFD 77 and didn't see it so I went with what was there and blessed. Mixing and matching markups for the sake of Github rendering isn't something I'd be happy with.

[update] I looked at what @trentm did a few hours ago re: RFD77 and assumed that to be the canonical state of the world. As our thinking evolves we can track updates and make the necessary adjustments.

@jclulow
Copy link
Contributor

jclulow commented Jul 28, 2017

It is, as far as I can tell, a content-agnostic YAML front matter block that we're expecting to put everywhere. While Github can render it, I believe the form originally came from Jekyll.

@jclulow
Copy link
Contributor

jclulow commented Jul 28, 2017

Note that it appears that asciidoctor does have support for handling the front matter block on at least some level.

@trentm
Copy link
Contributor

trentm commented Jul 28, 2017

@arekinath and I discussed the usage of an AsciiDoc custom attribute (i.e. :state: $state) in private chat yesterday. I wasn't aware at the time that AsciiDoc supported Jekyll front matter (thanks for the link @jclulow!). Having the same format for both .adoc and .md RFDs would be slightly easier for tools, but either would work. I don't have a strong preference, other than choosing one winner.

Copyright 2017 <contribution>
////

# RFD <Number> <Title>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want "# ..." for the h1 or "= ..." as the AsciiDoc user-guide seems to suggest? (Note that 'make check' and the bot tooling don't yet recognize "= ...".)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd advocate for = in order to be idiomatic. The token alias is nice, but we shouldn't rely on it.

When in Rome, do as the Romans do.

@sean-
Copy link
Contributor Author

sean- commented Jul 30, 2017

@jclulow Yup, I just got to that part of the manual. Updated the prototype.adoc to match.

The `skip-front-matter` attribute can only be passed in via the CLI:

```sh
$ asciidoctor --attribute=skip-front-matter ...
```
Brought to you by: future self asking, "WTF isn't this the default behavior?"
RFD's are going to need their own ghpages branch and
joyent.github.io/rfd/rfd*.html needs to be a thing otherwise this won't
render well by default.  This is a start, and it improves the state
of the world.
---
authors: Han Solo <han@example.com>, Frodo Baggins <frodo@example.com>
state: predraft
---
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

blank link before the title please... or perhaps let's move the title to after all the adoc attributes?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@trentm np. I'm curious as to why there is a preference. I haven't read anything to suggest it matters to asciidoc.

state: predraft
---
= RFD <NUMBER> <Title>
:author: Han Solo <han@example.com>; Frodo Baggins <frodo@example.com>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this duplication? If there is a reason for 'author' and 'state' in adoc attributes, then I say we should drop the jekyll-format frontmatter.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@trentm asciidoc does make use of this attribute somehow, somewhere. If you look at the rendered HTML, it has a placeholder for this value:

image

The front-matter for jekyll is purely for Jekyll. asciidoc ignores it completely (and though does save the value for reference, the content of the front-matter is un-indexable by asciidoc thereby rendering it effectively useless to asciidoc). I'm indifferent to its presence despite the fact that it doesn't add any value to the meaning of the content and also doesn't improve Github's rendering of the document (compare GH's rendering of asciidoc vs the actual asciidoctor-rendered version at https://cdn.rawgit.com/joyent/rfd/1bc065db/rfd/0106/README.html). I assumed the front-matter was being used somehow by one of our tools and was therefore a structurally important thing to leave in place for compatibility reasons.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the front matter is being parsed by the chat bot, and I think by 'make check'. I think I'd prefer we just use the asciidoc attributes, and drop the jekyll front-matter for .adoc RFDs.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated rfdlint to validate the titles for .adoc files. rfdlint is using = as its doc title token, not #: https://github.com/joyent/rfd/blob/master/tools/rfdlint#L131-L133

As for the chat bots, I haven't touched them but suspect it would be a similar change.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, thanks. I updated the new chatbot (joybot1999) already. I'll get the current jabber bot.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I lied, I won't get the current jabber bot. Meh, if we are going to move away from it in the next couple of weeks.

= RFD <NUMBER> <Title>
:author: Han Solo <han@example.com>; Frodo Baggins <frodo@example.com>
:state: predraft
:revremark: State: {state}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know/suspect this came from RFD 77's example. Do we care to have this? /cc @arekinath
My goal here is to reduce boilerplate we don't need.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:revmark: is the important attribute. I think @arekinath's example was correct in teasing the :state: attribute out from the :revmark: attribute.

:author: Han Solo <han@example.com>; Frodo Baggins <frodo@example.com>
:state: predraft
:revremark: State: {state}
:attribute-missing: warn
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we have a justification for any/all of these attributes? It would be nice if we could have none of them to have let distraction from the content when reading/editing the raw files.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

re: justification, yes. Most of them substantially improve the readability of the document. My understanding of this prototype was that it was intended to be the canonical source for a cargo-cult^Wskeleton RFD so that future authors wouldn't have to become experts and could still obtain the maximal benefit of the markup format (esp for larger/longer documents).

If we want to take a few minutes to optimize for readability of the raw files I'm sure we can figure out which attributes can be moved to the bottom of the document. I have some anecdotal evidence from my reformatting effort that some of them can't be moved around arbitrarily. I suspect - but have not confirmed - that asciidoc only makes a single-pass over the document.

In general I'd favor maintainability of raw files over readability of the raw files, especially in larger documents where consumption of the raw document is going to become increasingly difficult with the use of external files that are externally maintained and included at document compile-time. I like that both Markdown and asciidoc are very readable forms in the raw (compared with mdoc or Docbook), but I'm less concerned with the first 50 lines of a file compared with the remaining hundreds to thousands of lines of the document that contain the real content.

@sean-
Copy link
Contributor Author

sean- commented Aug 1, 2017

@trentm and I had an offline conversation where he suggested include'ing the front-matter. This appears to work nicely.

It still doesn't address the problem that Github doesn't render the includes inline (https://github.com/joyent/rfd/tree/master/rfd/0106#recommendations), but that's a secondary concern, imo, because now we have testable examples being used in documentation (https://github.com/joyent/rfd/blob/master/rfd/0106/examples/import_test.go). The compiled HTML is still available via https://cdn.rawgit.com/joyent/rfd/2744c91/rfd/0106/README.html which is a marked improvement in nearly every dimension and its presentation is orthogonal to the prototype markup for asciidoc, imo.

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

Successfully merging this pull request may close these issues.

None yet

3 participants