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
File ", img_url, " not found in resource path
Error : pandoc document conversion failed with error 99
However, when I remove source_code: embed, it works fine. The workaround to keep source_code: embed and knit correctly, is to deliberately make a typo in the paste() function so it doesn't recognize html code then fix the typo with some string manipulation functions.
The text was updated successfully, but these errors were encountered:
This is an issue because currently html entities from the code are not escaped when inserted inside <pre class="line-numbers"><code class="language-r">
That is why pandoc interprets <img as an incomplete image tag.
As a workaround you can use R code to create html instead of pasting strings
Hello,
The following code doesn't work when knitting the dashboard:
It produces a pandoc error:
However, when I remove
source_code: embed
, it works fine. The workaround to keepsource_code: embed
and knit correctly, is to deliberately make a typo in thepaste()
function so it doesn't recognize html code then fix the typo with some string manipulation functions.The text was updated successfully, but these errors were encountered: