-
Notifications
You must be signed in to change notification settings - Fork 12
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
if md_in_html is enabled, render tile captions using markdown #57
Comments
see https://github.com/WSOFT-Project/lantana/blob/2c2da72d109df641280306b88a3798bbc492c5da/setup.py#L24-L26 see also: |
|
resolved with version 3.7.0
tile config---
grid_css: ntno_img_card_grid
tiles:
- caption: 'Figure 8, *Misc. Project Notes*, pages 82, 83.'
img_src: /img/led-biking-backpack/led-layout-brainstorm.png
img_title: '' #TODO
img_alt: '' #TODO
--- mkdocs.ymlmarkdown_extensions:
- attr_list
- meta
- md_in_html
- toc:
permalink: "#"
plugins:
- md-to-html
- search
- git-revision-date requirements.txt
result |
implemented new plugin which comes pre-installed with the theme. enable by adding |
Describe the problem you'd like to have solved
I would like to be able to enter markdown for a tile caption and have it be rendered in the final tile grid
Describe the ideal solution
if the tile.caption is markdown then it should render correctly when md_in_html extension is enabled
ex:
tile.caption:
Figure 8, *Misc. Project Notes*, pages 82, 83.
then 'Misc. Project Notes' should be in italics
Alternatives and current work-arounds
current workaround is to use html tags
ex:
tile.caption:
Figure 8, <i>Misc. Project Notes</i>, pages 82, 83.
Additional context
The text was updated successfully, but these errors were encountered: