TinyMCE - load whole html content without altering meta head JavaScript tags - tinymce

When I load file.html to TinyMCE, just content in body tag is available. I would like to be able to edit whole html site content with TinyMCE without striping html, head, meta, script tags, or other tags. How is this possible please?

There is a plugin called fullpage that will allow you to do what you want:
https://www.tiny.cloud/docs/plugins/fullpage/

Related

Modify the content of url in webview_flutter

I'm rendering HTML content from an external URL in webview_flutter.
I would like to remove/add/update some HTML content (divs) from the URL before it gets displayed.
One possible solution that I can think of is:
download the page content in a string
update the content
render the content
But this can cause other issues with the follow-up calls made from the page.
Any suggestion on how it could be done?

Getting HTML markup from TinyMCE?

I am new to TinyMCE and I was wondering if TinyMCE or any RTE had the ability to access the HTML markup. I've looked at methods like getContent() but that to me seems like it only gets the data inside the HTML rather than the full HTML itself.

TinyMCE / Prestashop - get HTML content

I'm currently working on a website and I have to use Prestashop.
I created a back office interface that allows the user to write, edit and delete articles. So I put a tinyMCE editor in it.
The problem is that when I click on 'save' to store the article in the database, it only stores raw text, without the styling content (html tags, bold text etc)
I would like to know how to get the whole content, including html tags, styling etc.
Thank you.
Ok so all I had to do was to change self::TYPE_STRING to self::TYPE_HTML in my Article.php file.

JQTouch loading external html page

Do we need to have all pages inside divs in one html page?
In case of my website I would need to create a huge file to accomplish that.
Short answer is that no, you do not. In your link tags, instead of typing:
<a id="#linkTo">Link!</a>
You would type
Link!
Your content would have to be an html snippet instead of a fully baked web page. You can look at the demos to see how this is done.

Is it not possible to add HTML tags between ASP tags?

I added a Web Form Content and linked it with Master Page. I could see in this Content Form that there is only one ContentPlaceHolder ASP tag. Now how to add DIV and other tags in between this?
you can use HTML tags where ever in ASPX files. but its recommanded to use ASP.net tags (or maybe CSS for styling) if it is possible.