v icon indicating copy to clipboard operation
v copied to clipboard

The vweb.html() function converts at characters in a links of the template file to dollar characters in the html file.

Open zhihau opened this issue 2 years ago • 4 comments

V version: V 0.2.4 d0a11f5 OS: Windows 10

What did you do? I try to build a simple web application using module vweb. Link bootstrap wiith external url in my index.html. I get an error message in the conosle. Failed to load resource: the server responded with a status of 400 (). Test in chrome and microsoft edge browser. Does anyone know how to fix the bug? The original link is https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js After converting template to html, the at @ character will convert to the dollar $character. Like https://cdn.jsdelivr.net/npm/jquery$3.6.0/dist/jquery.slim.min.js How to prevent this action?

What did you expect to see? The link must be be https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js in my chrome browser.

What did you see instead? I see the link is changed to https://cdn.jsdelivr.net/npm/jquery$3.6.0/dist/jquery.slim.min.js in my chrome browser.

zhihau avatar Apr 20 '22 08:04 zhihau