/
home
/
aqcert
/
public_html
/
admin
/
tinymce
/
tests
/
manual
/
/home/aqcert/public_html/admin/tinymce/tests/manual
mkdir
upload
Name
Size
Mode
Actions
css/
-
0755
rm
img/
-
0755
rm
accessibility.html
2995
0644
edit
dl
rm
caretwalker.html
5133
0644
edit
dl
rm
classic.html
9252
0644
edit
dl
rm
commands.html
9423
0644
edit
dl
rm
content-editable-false.html
8159
0644
edit
dl
rm
custom_theme.html
9299
0644
edit
dl
rm
development.html
7872
0644
edit
dl
rm
dirty.html
1543
0644
edit
dl
rm
dragdrop.html
2665
0644
edit
dl
rm
focus.html
4509
0644
edit
dl
rm
gecko_caret.html
3429
0644
edit
dl
rm
icons.html
8140
0644
edit
dl
rm
index.html
1799
0644
edit
dl
rm
inline-toolbars.html
4720
0644
edit
dl
rm
inline.html
2109
0644
edit
dl
rm
jquery.html
815
0644
edit
dl
rm
media.html
2990
0644
edit
dl
rm
noneditable.html
2337
0644
edit
dl
rm
notification.html
1958
0644
edit
dl
rm
paste.html
5842
0644
edit
dl
rm
performance.html
6861
0644
edit
dl
rm
removeformat.html
3142
0644
edit
dl
rm
resize.html
8224
0644
edit
dl
rm
skin.html
5250
0644
edit
dl
rm
table-cell-selection.html
2077
0644
edit
dl
rm
table-resize-bars.html
6974
0644
edit
dl
rm
tests.js
671
0644
edit
dl
rm
ui_container.html
1386
0644
edit
dl
rm
visualblocks.html
2354
0644
edit
dl
rm
Edit:
/home/aqcert/public_html/admin/tinymce/tests/manual/visualblocks.html
(2354B)
<!DOCTYPE html> <html> <head> <title>Visual blocks</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <script src="../../js/tinymce/tinymce.dev.js"></script> <script> tinymce.init({ mode: "textareas", plugins: "visualblocks", toolbar1: "visualblocks styleselect code", visualblocks_default_state: true, // Experimental feature to break container on enter in a empty block element //end_container_on_empty_block: true, // Style formats style_formats: [ {title: 'h1', block: 'h1'}, {title: 'h2', block: 'h2'}, {title: 'h3', block: 'h3'}, {title: 'h4', block: 'h4'}, {title: 'h5', block: 'h5'}, {title: 'h6', block: 'h6'}, {title: 'p', block: 'p'}, {title: 'div', block: 'div'}, {title: 'pre', block: 'pre'}, {title: 'section', block: 'section', wrapper: true, merge_siblings: false}, {title: 'article', block: 'article', wrapper: true, merge_siblings: false}, {title: 'blockquote', block: 'blockquote', wrapper: true}, {title: 'hgroup', block: 'hgroup', wrapper: true}, {title: 'aside', block: 'aside', wrapper: true}, {title: 'figure', block: 'figure', wrapper: true} ], add_unload_trigger: false }); </script> </head> <body> <form method="post" action="http://www.tinymce.com/dump.php?example=true"> <textarea id="elm1" name="elm1" rows="40" cols="80" style="width: 80%"> <h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> <p>Paragraph</p> <div>Div</div> <pre>Pre</pre> <address>Address</address> <section>Section<p>Paragraph</p></section> <article>Article<p>Paragraph</p></article> <blockquote>Blockquote<p>Paragraph</p></blockquote> <hgroup><h1>Header 1</h1></hgroup> <aside>Section<p>Paragraph</p></aside> <figure>Figure<figcaption>Figcaption</figcaption></figure> </textarea> </form> <script> if (document.location.protocol == 'file:') { alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver."); } </script> </body> </html>
Save
Visual blocks
<h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> <p>Paragraph</p> <div>Div</div> <pre>Pre</pre> <address>Address</address> <section>Section<p>Paragraph</p></section> <article>Article<p>Paragraph</p></article> <blockquote>Blockquote<p>Paragraph</p></blockquote> <hgroup><h1>Header 1</h1></hgroup> <aside>Section<p>Paragraph</p></aside> <figure>Figure<figcaption>Figcaption</figcaption></figure>