Is there an online example of using TinyMCE with a print layout, for example, words

Is there an online example of using TinyMCE with a print layout, for example, where can you see the end of each page? Or is there another open source WYSIWYG editor that has a print layout?

+4
source share
2 answers

TinyMCE is just a layer between the user and any process that you use to create the print element. It just generates HTML markup (and this code can be very dirty), and you will need to store the HTML in a file or database. Thus, in order to generate a β€œpreview” of the code, you need to directly access the html (and display it using CSS with print support).

Check MarkitUp (http://markitup.jaysalvat.com/home/). This needs to be customizable to meet your printing needs.

+3
source

This is the official Moxiecode example page. There are a few examples, but I'm afraid that your use case will not be found there.

0
source

Source: https://habr.com/ru/post/1346651/


All Articles