项目作者: writers-mark

项目描述 :
Easy, safe and flexible markup for user-generated content.
高级语言:
项目地址: git://github.com/writers-mark/writers-mark.git
创建时间: 2020-11-21T16:47:46Z
项目社区:https://github.com/writers-mark/writers-mark

开源协议:

下载


Writer’s Mark

Easy, safe and flexible markup for user-generated content.

Writer’s Mark attempts to thread the needle between the simplicity of markdown and the power of HTML/CSS, while providing security guarantees so that user-generated content can be both safe and flexible at the same time.

Live Demo : https://writers-mark.github.io/demo/

Implementations

Introduction:

In short, it allows you to write like this:

  1. __title__
  2. This is the title
  3. __subtitle__
  4. It's pretty neat
  5. This is a paragraph.
  6. This is another single paragraph. It is
  7. spread over multiple lines, but still renders as a single <p> tag.
  8. __aside__
  9. This paragraph has some special styling applied to it
  10. In this paragraph **spans of words** can be styled
  11. ---
  12. para __title__ {font-size: 2em; font-weight: bold;}
  13. para __subtitle__ {font-size: 1.5em;}
  14. para __aside__ {margin-left: 2em;}
  15. span ** {font-weight: bold;}
  16. ---

N.B. Styling rules do not have to be embedded within the text itself, they can also be externally provided.

Why?

A text should belong to its author, not to whatever software platform it was authored on. At the same time, we acknowledge
that powerful markup languages like LaTeX or HTML/CSS are not particularly welcoming to new users.

The goal of Writer’s Mark is to allow authors to write and format text in a way that they fully own, while being straightforward
enough that they can just dive in.

Writing

Text

Text is just a collection of paragraphs

  1. This is a paragraph.
  2. This is a longer paragraph. Its text is spread over multiple
  3. lines, but it will behave as if it was written on a single line.
  4. It does not matter how much space there is between paragraphs.

There are two kinds of style rules: Paragraph and span rules. A style is simply a collection of these rules.

Paragraph styles

If a paragraph begins with text matching a paragraph rule by itself on a line, that rule is applied to the paragraph.

  1. some_style
  2. This paragraph has the some_style rule applied to it.
  3. It will be formatted according to its properties as long as some_style is a style rule.

Multiple styles can be applied to a single paragraph:

  1. some_style
  2. some_other_style
  3. This paragraph has the both the some_style and some_other_style rules applied to it.
  4. The rules will be applied in order from top to bottom.

Span rules

If the open sequence of a span rule is present in a paragraph, and the close sequence follows it. Everything in between will have the rule applied.

  1. The *text* of the paragraph.

Writing Styles

Paragraph rules

A paragraph rule looks like this:

  1. para <token> {
  2. margin: 12px;
  3. font-family: arial;
  4. etc...
  5. }

Span rules

A span rule looks like either one of these. In the first flavor, token is used both as the open and close sequence.

  1. span <token> {
  2. font-weight: bold;
  3. etc...
  4. }
  5. span <open> [close] {
  6. font-style: italic;
  7. property-2: value;
  8. etc...
  9. }

Container rules

Style can also be applied to the background of a text using a container rule:

  1. cont {
  2. background-color: lightGrey;
  3. }

FAQ:

What are the properties that I can use?

On paper Writer’s Mark supports almost all CSS rules with a few caveats.

  • An App is free to allow or disallow any CSS property it chooses.
  • Any value referencing external resources is disallowed e.g. background: url("http://example.com/img.jpg"); will not work.
  • You cannot use any escape sequence. If you don’t know what that means, don’t worry about it.
  • Paragraphs are converted into <p> tags, so only properties that work on them can be used.
  • Spans are converted into <span> tags, so only properties that work on them can be used.
  • Containers are almost always <div> tags, so only properties that work on them can be used.

Can I add images to text?

Not at the moment. We might allow something in the future, but it would have to be both secure and writer-friendly.

Not at the moment. This is something that is being considered.

Safety

Writer’s mark is meant to be safe by default.

  • Arbitrary HTML is not supported.
  • Links, images, or anything using an rxternal resource is not supported.
  • CSS properties are opted-in.