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

issue when parsing tables with status badges #7

Open
hoermannpaul opened this issue Aug 12, 2020 · 0 comments
Open

issue when parsing tables with status badges #7

hoermannpaul opened this issue Aug 12, 2020 · 0 comments

Comments

@hoermannpaul
Copy link

hoermannpaul commented Aug 12, 2020

| col 1 | col 2  |
| ----------- | ----------- |
| row 1: | [![some status image](https://some/Badge)](link) |
| row 2: | [![some status image](https://some/Badge)](link) |

gets translated to

   * - col 1
     - col 2
   * - row 1:
     - 
     .. image:: https://some/Badge
        :target: link
        :alt: some status image
   * - row 2:
     - 
     .. image:: https://some/Badge
        :target: link
        :alt: some status image

which should be

   * - col 1
     - col 2
   * - row 1:
     - .. image:: https://some/Badge
        :target: link
        :alt: some status image
   * - row 2:
     - .. image:: https://some/Badge
        :target: link
        :alt: some status image

This results in an error and the table is not gettings displayed, when converting manually to second variant it works.

I am not sure if second variant is like it really should be, but it looks ok and there are no errors when building docs anymore

Actually I will just not display the badges in tables anymore, but just so this issue is known :)

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

1 participant