du asset meta update

This commit is contained in:
Micah
2020-10-01 17:56:12 -04:00
parent df06edbba7
commit 323416b99a
41 changed files with 681 additions and 153 deletions

View File

@@ -8,9 +8,9 @@
</h3>
<p>{{{description}}}</p>
<p>Version - {{version}}</p>
<p>Author - {{author}}</p>
<p>Author - {{{author}}}</p>
<p>Associated URL - <a href="{{url}}">{{url}}</a></p>
<p>License - {{license}}</p>
<p>License - {{{license}}}</p>
<p>Filepath - {{path}}</p>
</p>
</div>

View File

@@ -133,6 +133,10 @@ window.onload = function () {
/\\n/g, ""
);
documentation[i].data[j].description = escaped;
var escapedLicense = documentation[i].data[j].license.replace(
/\\n/g, ""
);
documentation[i].data[j].license = escapedLicense;
}
}