Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-03-18 19:15:31 +0300
committerJulius Härtl <jus@bitgrid.net>2019-03-18 19:15:31 +0300
commit66adbbbe655ef62f1545a39c2bf31630455af8da (patch)
tree3d0343166617e728f41e37ede2a1dc5983e1d8c8 /templates
Add basic app structure
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'templates')
-rw-r--r--templates/main.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/main.php b/templates/main.php
new file mode 100644
index 000000000..0aba4731d
--- /dev/null
+++ b/templates/main.php
@@ -0,0 +1,29 @@
+<?php
+script('text', 'type');
+style('text', 'style');
+?>
+<div id="app-content">
+ <div id="editor1"></div>
+ <div id="editor2"></div>
+ <div id="editor3"></div>
+
+ <div style="display: none" id="editor-content">
+ <h3>Hello ProseMirror</h3>
+
+ <p>This is editable text. You can focus it and start typing.</p>
+
+ <p>To apply styling, you can select a piece of text and manipulate
+ its styling from the menu. The basic schema
+ supports <em>emphasis</em>, <strong>strong
+ text</strong>, <a href="http://marijnhaverbeke.nl/blog">links</a>, <code>code
+ font</code>, and <img src="/img/smiley.png"> images.</p>
+
+ <p>Block-level structure can be manipulated with key bindings (try
+ ctrl-shift-2 to create a level 2 heading, or enter in an empty
+ textblock to exit the parent block), or through the menu.</p>
+
+ <p>Try using the “list” item in the menu to wrap this paragraph in
+ a numbered list.</p>
+ </div>
+
+</div>