We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I would like to have a list inside a table cell for my UG. I tried using HTML but it ended up displaying the raw text for my table on Github pages.
Is there a way to have a list (eg. bullet points) inside a table cell in the UG?
The text was updated successfully, but these errors were encountered:
Based on what I tried, you can consider writing the entire table in html based on: https://stackoverflow.com/questions/19950648/how-to-write-lists-inside-a-markdown-table
Sorry, something went wrong.
You can also use HTML inline within a markdown table since GitHub markdown supports inline HTML. The following code block is an example of this:
| Column 1 | Column 2 | Column 3 | |:---------|:---------|:---------| | Placeholder text | Example List: <ul><li>list item 1</li><li>list item 2</li></ul> | <ul><li>list item 1</li><li>list item 2</li></ul> |
The prior code block example would display like this:
No branches or pull requests
I would like to have a list inside a table cell for my UG. I tried using HTML but it ended up displaying the raw text for my table on Github pages.
Is there a way to have a list (eg. bullet points) inside a table cell in the UG?
The text was updated successfully, but these errors were encountered: