You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(renderer/types): icon attribute support
feat(renderer): Support image based icons
This adds inline icon support, and significantly refactors the icon handling
to bring in support for image based icons and all of the icon attributes
supported by asciidoctor, bringing us to feature parity.
Additionally, we preserve some of the attributes from the font icon tags onto
images, allowing flip, rotate, and size styles to be applied to icons.
(This is an improvement over asciidoctor, and requires supporting CSS.)
One subtle difference when comparing output. We emit source paths for images
without a leading "./". That is because our use of path.Join() automatically
removes the redundant portion.
fixesbytesparadise#587fixesbytesparadise#611fixesbytesparadise#610
gdamore
added a commit
to gdamore/libasciidoc
that referenced
this issue
Jun 15, 2020
This adds inline icon support, and significantly refactors the icon handling
to bring in support for image based icons and all of the icon attributes
supported by asciidoctor, bringing us to feature parity.
Additionally, we preserve some of the attributes from the font icon tags onto
images, allowing flip, rotate, and size styles to be applied to icons.
(This is an improvement over asciidoctor, and requires supporting CSS.)
One subtle difference when comparing output. We emit source paths for images
without a leading "./". That is because our use of path.Join() automatically
removes the redundant portion.
Fixesbytesparadise#587Fixesbytesparadise#611Fixesbytesparadise#610
This adds inline icon support, and significantly refactors the icon handling
to bring in support for image based icons and all of the icon attributes
supported by Asciidoctor, bringing us to feature parity.
Additionally, we preserve some of the attributes from the font icon tags onto
images, allowing flip, rotate, and size styles to be applied to icons.
(This is an improvement over Asciidoctor, and requires supporting CSS.)
One subtle difference when comparing output. We emit source paths for images
without a leading "./". That is because our use of `path.Join()` automatically
removes the redundant portion.
Fixes#587Fixes#611Fixes#610
Co-authored-by: Xavier Coulon <[email protected]>
There a bunch of attributes for icons that should be supported. Size, rotation, flip, etc. Also for image icons there are more like width, height.
We also want to support making these clickable links with the link attribute.
I'm addressing these all with the work to support inline icons.
The text was updated successfully, but these errors were encountered: