Hey there,
Over the past few months, we have added many new features and improvements to Papyrus. One of the most requested features was to allow collaborative editing. We are happy to tell you that Papyrus now has a new collaborative editor that you can use to write books with your coauthors.
To invite other authors click on the blue “Collaborate” button in the top right corner. You can add the emails of your co-authors to invite them.The collaborators can make edits simultaneously together in the same chapter( even on the same line of text if you want).
Markdown Editing
There is one significant difference between the existing editor and the new collaborative editor. In the new editor the text has to entered in the markdown format. Markdown is a very easy way to create content, by following very simple rules.
Here is very simple tutorial introducing you to markdown format(based on wikipedia article ( http://en.wikipedia.org/wiki/Markdown )
Adding Headings
It is very easy to add headings for your text using Markdown format. HTML headings are produced by placing a number of hashes before the header text corresponding to the level of heading desired (HTML offers six levels of headings), like so:
# First-level heading
#### Fourth-level heading
would result in
First-level heading
Fourth-level heading
Paragraphs
A paragraph is one or more consecutive lines of text separated by one or more blank lines.
This is a paragraph. It has two sentences.
This is another paragraph. It also has
two sentences.
would result in
This is a paragraph. It has two sentences.
This is another paragraph. It also has
two sentences.
Lists
There are two types of lists in Markdown, an ordered list and an unordered list, as in HTML.
An unordered list is created by placing a number of indents and “bullets” infront of the list item. “Bullets” include asterisks, plus and minus signs.
* An item in a bulleted (unordered) list
+ A subitem, indented with 4 spaces
- Another item in a bulleted list
* Here's another item
This translates to
- An item in a bulleted (unordered) list
- A subitem, indented with 4 spaces
- Another item in a bulleted list
- Here’s another item
You could add ordered lists as well
1. An item in an enumerated (ordered) list
1. A subitem, indented with 4 spaces
2. Another item in an enumerated list
3. Another item
4. Yet another item
which would result in
- An item in an enumerated (ordered) list
- A subitem, indented with 4 spaces
- Another item in an enumerated list
- Another item
- Yet another item
Blockquotes
Blockquotes are created by adding an angle bracket. For example:
> "This entire paragraph of text will be enclosed in an HTML blockquote element.
Blockquote elements are reflowable. You may arbitrarily
wrap the text to your liking, and it will all be parsed
into a single blockquote element."
translates to
This entire paragraph of text will be enclosed in an HTML blockquote element. Blockquote elements are reflowable. You may arbitrarily wrap the text to your liking, and it will all be parsed into a single blockquote element.
External Links and Images
You can add links and images in the following manner
[link text here](link.address.here)
Ex. [Markdown](http://en.wikipedia.com/wiki/Markdown)

becomes
Markdown

If you have any queries feel free to write to me gaurav@papyruseditor.com
Post Footer automatically generated by Add Post Footer Plugin for wordpress.
Recent Comments