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
On this page of the documentation, there is a comment that begins with **Note in a yellow box that stops rendering at the first backtick that mentions the <script> element.
The content displayed should be:
Note: When you download jQuery, the file name may contain a version number, e.g., jquery-x.y.z.js. Make sure to either rename this file to jquery.js or update the src attribute of the <script> element to match the file name.
The actual content that appears is:
Note: When you download jQuery, the file name may contain a version number, e.g., jquery-x.y.z.js. Make sure to either rename this file to jquery.js or update the src attribute of the `
The text was updated successfully, but these errors were encountered:
<divclass="warning">**Note**: When you download jQuery, the file
name may contain a version number, e.g., `jquery-x.y.z.js`. Make
sure to either rename this file to `jquery.js` or update the `src`
attribute of the `<script>` element to match the file name.</div>
The specific markdown parser used by grunt-jquery-content is called marked (from @markedjs). There has been some discussion there over the years about how to support Markdown inside a <div> element at markedjs/marked#488 and markedjs/marked#985. In a nut shell, it seems adding a line break will mitigate the issue. Without it it treats the entire line as raw HTML.
On this page of the documentation, there is a comment that begins with
**Note
in a yellow box that stops rendering at the first backtick that mentions the <script> element.The content displayed should be:
Note: When you download jQuery, the file name may contain a version number, e.g.,
jquery-x.y.z.js
. Make sure to either rename this file tojquery.js
or update thesrc
attribute of the<script>
element to match the file name.The actual content that appears is:
Note: When you download jQuery, the file name may contain a version number, e.g.,
jquery-x.y.z.js
. Make sure to either rename this file tojquery.js
or update thesrc
attribute of the `The text was updated successfully, but these errors were encountered: