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
When the docs engine generates a Markdown AST of the docs page, the https:// URL inside the parameter value is being converted to a Markdown link node (which is why there is a link in the example).
Because the Markdown AST paragraph node that includes the (! !) expression also includes a link node, the code that resolves the includes doesn't detect it to be an include expression, since parent.children && parent.children.length === 1 is false.
I didn't find a workaround to get https:// working. I dropped https:// part from the var since it's optional on teleport/docs side so this is not urgent.
https://github.com/gravitational/teleport/blob/717e5969e3326157a670e7aaa0244378eb8902b1/docs/pages/database-access/guides/snowflake.mdx#L43
Note that
redis://
works fine in another page. Also removinghttps://
also works.The text was updated successfully, but these errors were encountered: