diff options
author | Alexander_Kabui | 2024-08-05 18:40:10 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-08-29 18:58:56 +0300 |
commit | 7015579e7d10d964cee0019943a79f37877b9eee (patch) | |
tree | b3a963de8e845580333752ca28e2684d95877c2c | |
parent | 3bfd52b4d7d5383b45f552ead23e3a00f9b86f78 (diff) | |
download | genenetwork2-7015579e7d10d964cee0019943a79f37877b9eee.tar.gz |
Add preview Functionality.
-rw-r--r-- | gn2/wqflask/templates/gn_editor.html | 38 |
1 files changed, 34 insertions, 4 deletions
diff --git a/gn2/wqflask/templates/gn_editor.html b/gn2/wqflask/templates/gn_editor.html index 60a73b1f..c957f6aa 100644 --- a/gn2/wqflask/templates/gn_editor.html +++ b/gn2/wqflask/templates/gn_editor.html @@ -19,6 +19,7 @@ <ul class="nav navbar-nav navbar-right"> <li><a href="#">Commit</a></li> <li><a href="#">Refresh</a></li> + <li><a href="#">Help</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Settings <span class="caret"></span></a> <ul class="dropdown-menu"> @@ -40,7 +41,7 @@ </section> <section class="col-sm-6"> <div class="row"> - <section class="col-sm-10 col-sm-offset-1"> + <section class="col-sm-10 col-sm-offset-1" id="output" style="height:100vh;overflow-y:scroll"> Tristique nulla aliquet enim tortor, at auctor urna nunc id cursus metus aliquam eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci, a scelerisque! Laoreet suspendisse interdum consectetur libero. </section> </div> @@ -61,7 +62,8 @@ <script src="//ajaxorg.github.io/ace-builds/src-min-noconflict/ace.js"></script> - +<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> + <script src="https://cdn.jsdelivr.net/npm/marked-highlight/lib/index.umd.js"></script> <script type="text/javascript"> document.addEventListener('DOMContentLoaded', function() { @@ -123,10 +125,38 @@ var editor = ace.edit("editor"); editor.setOptions(editor_configurations); -editor.container.style.resize = "horizontal"; + editor.container.style.resize = "horizontal"; + function updatePreview(){ + const {markedHighlight} = globalThis.markedHighlight; + let new_marked = new marked.Marked( + markedHighlight({ + langPrefix: 'hljs language-', + highlight(code, lang) { + const language = hljs.getLanguage(lang) ? lang : 'plaintext'; + return hljs.highlight(code, { language }).value; + } + }) + ); + new_marked.use({ + pedantic: false, + gfm: true, + }); + + previewContent = document.querySelector("#output"); + var markdownContent = editor.getValue(); + var htmlContent = new_marked.parse(markdownContent) + previewContent.innerHTML = htmlContent; + } + + editor.getSession().on("change", function(e){ + updatePreview() + }) + + + + }); - </script> |