diff options
author | NateN1222 <nathannichols454@gmail.com> | 2017-08-20 14:29:34 -0500 |
---|---|---|
committer | NateN1222 <nathannichols454@gmail.com> | 2017-08-20 14:29:34 -0500 |
commit | fdd37993efbec3081bf6488ebd85bfb7a40bcecf (patch) | |
tree | d41f73048655d65df990dd0fcf2c2249bdd92e99 /testtag.html | |
parent | e120564551b325f90b446c490b1e2c80a2f6f311 (diff) |
Implemented parsing and individual editing of @license tags
Diffstat (limited to 'testtag.html')
-rw-r--r-- | testtag.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testtag.html b/testtag.html new file mode 100644 index 0000000..01e98ba --- /dev/null +++ b/testtag.html @@ -0,0 +1,17 @@ +<!doctype html> +<html> + <head> + <title>A Page containing free JS</title> + </head> + <body> + <div id="bod" style="white-space: pre-wrap;"> +@license magnet:?xt=urn:btih:0ef1b8170b3b615170ff270def6427c317705f85&dn=lgpl-3.0.txt LGPL-3.0 +console.log("free js"); +@license-end +eval("console.log('nontrivial mystery code')"); +@license magnet:?xt=urn:btih:b8999bbaf509c08d127678643c515b9ab0836bae&dn=ISC.txt ISC +console.log("free js"); +@license-end + </div> + </body> +</html> |