Alex-D / Trumbowyg

A lightweight and amazing WYSIWYG JavaScript editor under 10kB
https://alex-d.github.io/Trumbowyg
MIT License
3.96k stars 606 forks source link

Insert html, java, python, etc code with format like an IDE #1463

Open manuelhz opened 1 month ago

manuelhz commented 1 month ago

I would like to insert html, java, python, etc code with format like an IDE to explain code for example. like this:

If we are building plain HTML Jquery web ui, then we can integrate the CDN as below:

<head> 
<title>Your Web Page</title>
 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/trumbowyg@2.26.0/dist/ui/trumbowyg.min.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/trumbowyg@2.26.0/dist/trumbowyg.min.js"></script>
</head>

We can take the js and css files of the jquery rich text editor from github and add it our project.

Description

this id my base code:

<!DOCTYPE html>
<html lang="en">

<head>    
    <title>Document</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/trumbowyg@2.26.0/dist/ui/trumbowyg.min.css">
    <script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/trumbowyg@2.26.0/dist/trumbowyg.min.js"></script>
</head>
<script>
    $(document).ready(function() {
        $('#default-editor').trumbowyg();
        $('#reset-default-editor').click(function () {
         $('#default-editor').trumbowyg('empty');
         });
   });

</script> 

<body>
    <textarea id="default-editor"></textarea>
    <div id="default-editor"></div>
    <button id="reset-default-editor">Reset</button>

</body>
<footer>
    <!-- Import jQuery -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script>window.jQuery || document.write('<script src="js/vendor/jquery-3.3.1.min.js"><\/script>')</script>

    <!-- Import Trumbowyg -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/Trumbowyg/2.27.3/trumbowyg.min.js"></script>
</footer>
<script>
    $('#editor').trumbowyg();
</script>

</html>

How to reproduce?