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

Asciidoc: attributes in functions rendered as a blank line #851

Closed
anarthal opened this issue Jan 31, 2025 · 7 comments
Closed

Asciidoc: attributes in functions rendered as a blank line #851

anarthal opened this issue Jan 31, 2025 · 7 comments

Comments

@anarthal
Copy link

It looks like there is a rendering issue with attributes in the asciidoc generator. They seem to be added to the resulting asciidoc, but when rendered to HTML, they are replaced by blank lines.

For instance:

namespace boost::mysql {

template <class T>
[[nodiscard]] int f();

}  // namespace boost::mysql

Generates the following asciidoc:

[#boost-mysql-f]
= xref:boost.adoc[boost]::xref:boost/mysql.adoc[mysql]::f
:relfileprefix: ../../
:mrdocs:


== Synopsis


Declared in `&lt;https://github.com/boostorg/mysql/blob/master/include/boost/repro.hpp#L4[boost&sol;repro&period;hpp]&gt;`

[source,cpp,subs="verbatim,replacements,macros,-callouts"]
----
template&lt;class T&gt;
[[nodiscard]]
int
f();
----



[.small]#Created with https://www.mrdocs.com[MrDocs]#

Which renders as:

Image

@alandefreitas
Copy link
Collaborator

Attributes look fine in the tests (see test-files/golden-tests/metadata/attributes_1.html). It might be an issue with the version because MrDocs is moving very fast. Depending on how you're running it, you could create a script to update/reinstall MrDocs and run it every once in a while.

In any case, I've included another test with the specific case:

// issue #851

template <class T>
[[nodiscard]] int f();

Reference

Global namespace

Functions

Name
f

f

Synopsis

Declared in <attributes-2.cpp>

template<class T>
[[nodiscard]]
int
f();

Created with MrDocs

@anarthal
Copy link
Author

anarthal commented Feb 1, 2025

I've updated to 375d913 and this seems to still happen. Can you please point me to the package.json with the Antora and asciidoctor versions you use in your test suite?

@alandefreitas
Copy link
Collaborator

There's no Antora and asciidoc in the test suite. You can see the fixtures in test-files/golden-tests.

In this case, test-files/golden-tests/metadata/attributes*. There you can see what MrDocs generates.

But I think in this case we have to investigate the relationship between the asciidoc it generates and Antora.

Does [[xxxx]] have some special meaning in Antora (meaning we also have to escape [ and ]) or is the HTML Antora generates is correct (meaning there's something we need to fix in the UI bundle)?

@alandefreitas
Copy link
Collaborator

Oh... Just had another look at it. The issue is Antora interprets that as an anchor. I'll fix that soon.

@anarthal
Copy link
Author

anarthal commented Feb 1, 2025

Well I did post the generated asciidoc :)

@anarthal
Copy link
Author

anarthal commented Feb 1, 2025

Gotcha. Thanks.

alandefreitas added a commit to alandefreitas/mrdocs that referenced this issue Feb 1, 2025
#fix

fix cppalliance#851
@alandefreitas
Copy link
Collaborator

Well I did post the generated asciidoc :)

Yes. The word "rendered" is what was ambiguous. There are many rendering steps to be confused about. I thought you meant the attribute just wasn't in the adoc file. Not that it wasn't correctly escaped and being converted to an anchor.

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