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
In this example GitHub chooses to format @variables as link and bold. But this is incorrect. It is not a link to a GitHub handle. Instead it is just code.
The Value column may contains html tags or other code elements. Therefore it should be rendered as code block. This avoids issues with downstream Markdown renderer and also reflects the code elements of the values.
Proposed generated table:
| Property | Value || -------- | -------------------------- || test |`test`|| from |`@variables('BodyToSend')`|| format |`HTML`|
Rendered result:
Property
Value
test
test
from
@variables('BodyToSend')
format
HTML
The text was updated successfully, but these errors were encountered:
Fabian-Schmidt
changed the title
FlowDoc Inouts tables should contain code blocks
FlowDoc Inputs tables should contain code blocks
Aug 28, 2024
Fabian-Schmidt
changed the title
FlowDoc Inputs tables should contain code blocks
Markdown: FlowDoc table values generate as code blocks
Aug 28, 2024
I've got this partially fixed. Not working in a few scenarios (e.g. compose actions that use variables), need to see what other ways there are to fix this
Describe the bug
The Generated Markdown for FlowDoc can be converted by Markdown renderer instead of left as is.
Example is your from your Examples documents:
PowerDocu/examples/FlowDoc - Email me with a list of upcoming Calendar events/actions/Create_HTML_table-Email-me-with-a-list-of-upcoming-Calendar-events(e6b4e32f-c97d-4280-896b-57976ea698e3).md
Lines 23 to 29 in 8400e0f
Currently the table is generated as:
Rendered result:
In this example GitHub chooses to format
@variables
as link and bold. But this is incorrect. It is not a link to a GitHub handle. Instead it is just code.Similar issue
Expression
row for columnValue
:PowerDocu/examples/FlowDoc - Email me with a list of upcoming Calendar events/actions/Check_if_its_Hotel-Email-me-with-a-list-of-upcoming-Calendar-events(e6b4e32f-c97d-4280-896b-57976ea698e3).md
Lines 16 to 22 in 8400e0f
Expected behavior
The Value column may contains html tags or other code elements. Therefore it should be rendered as code block. This avoids issues with downstream Markdown renderer and also reflects the code elements of the values.
Proposed generated table:
Rendered result:
test
@variables('BodyToSend')
HTML
The text was updated successfully, but these errors were encountered: