ChainMovers / suibase

Sui development environment and cookbook.
https://suibase.io
Apache License 2.0
35 stars 6 forks source link

Post Processing HTML Script throws - SyntaxError #48

Closed andreidev1 closed 1 year ago

andreidev1 commented 1 year ago

objects.md from Code Snippets can't be loaded into a web page. Screenshot from 2023-05-27 23-16-45

Some constants from js assets contain different type of quote ( e.g instead ' they contain ` )

python post_processing_html.py generated inside assets/objects.html-31c214c4.js :

const e=JSON.parse(' {"key": ...... ' ); export{e as data};

instead of

const e=JSON.parse(` {"key": ...... ` ); export{e as data};