1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00

Fix WYSIWYG documentation (#2359)

This commit is contained in:
Paweł Kuna
2025-05-12 20:30:33 +02:00
committed by GitHub
parent b9d434dcd4
commit ddd3753cde
9 changed files with 45 additions and 126 deletions

View File

@@ -1,36 +0,0 @@
{% assign id = include.id | default: 'mytextarea' %}
<form method="post">
<textarea id="hugerte-{{ id }}">Hello, <b>Tabler</b>!</textarea>
</form>
{% capture_script %}
<script>
document.addEventListener("DOMContentLoaded", function () {
let options = {
selector: '#hugerte-{{ id }}',
height: 300,
menubar: false,
statusbar: false,
license_key: 'gpl',
plugins: [
'advlist', 'autolink', 'lists', 'link', 'image', 'charmap', 'preview', 'anchor',
'searchreplace', 'visualblocks', 'code', 'fullscreen',
'insertdatetime', 'media', 'table', 'code', 'help', 'wordcount'
],
toolbar: 'undo redo | formatselect | ' +
'bold italic backcolor | alignleft aligncenter ' +
'alignright alignjustify | bullist numlist outdent indent | ' +
'removeformat',
content_style: 'body { font-family: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif; font-size: 14px; -webkit-font-smoothing: antialiased; }'
}
if (localStorage.getItem("tablerTheme") === 'dark') {
options.skin = 'oxide-dark';
options.content_css = 'dark';
}
hugeRTE.init(options);
})
</script>
{% endcapture_script %}

View File

@@ -1,10 +1,11 @@
{% removeemptylines %}
{% assign id = include.id | default: 'mytextarea' %}
<form method="post">
<textarea id="hugerte-{{ id }}">Hello, <b>Tabler</b>!</textarea>
</form>
{% capture_script %}
{% capture script %}
{% removeemptylines %}
<script>
document.addEventListener("DOMContentLoaded", function () {
let options = {
@@ -33,4 +34,10 @@
hugeRTE.init(options);
})
</script>
{% endcapture_script %}
{% endremoveemptylines %}
{% endcapture -%}
{%- capture_script %}
{{ script }}
{% endcapture_script %}
{% endremoveemptylines %}