1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-06 14:16:46 +02:00

Version 1.2.1 Editor Improvement

This commit is contained in:
Sebastian
2018-07-06 10:31:20 +02:00
parent 0df0bd5a8e
commit 1aa20023d0
23 changed files with 254 additions and 380 deletions

View File

@@ -1,4 +1,4 @@
# Features
# Features qwer
TYPEMILL has a limited set of features right now. It transforms a bunch of **markdown files** into a **website** and generates a list of contents for **navigation**.

View File

@@ -1,6 +1,6 @@
# About TYPEMILL
# Typemill
TYPEMILL is a simple flat file CMS to create a website like this. It transforms a bunch of **text files** (Markdown) into a **website** and generates a **navigation**.
TYPEMILL is a simple flat file CMS to create a website like this. It transforms a bunch of **text files** (Markdown) into a **website** and generates a **navigation**.
TYPEMILL is under construction. Right now it provides only a very basic editor and a simple admin area for settings, plugins and themes. The author-experience will be improved step by step and output formats for e-books like mobi and epub are planned for the future.

View File

@@ -51,6 +51,20 @@ A paragraph is a simple text-block separated with a new line above and below.
A paragraph is a simple text-block separated with a new line above and below.
## Soft Linebreak
````
For a soft linebreak (eg. for dialoges in literature), add two spaces at the end of a line and use a simple return.
She said: "Hello"
He said: "again"
````
For a soft linebreak (eg. for dialoges in literature), add two spaces at the end of a line and use a simple return.
She said: "Hello"
He said: "again"
##Emphasis
````
@@ -137,11 +151,11 @@ Or you can use a shortcut like http://typemill.net.
```
The same rules as with links, but with a !
![alt-text](/info/markdown.png)
![alt-text](/media/markdown.png)
![alt-text](/info/markdown.png "my title")
![alt-text](/media/markdown.png "my title")
![alt-text](/info/markdown.png "my title"){#myid .myclass}
![alt-text](/media/markdown.png "my title"){#myid .myclass}
```
The same rules as with links, but with a !
@@ -152,6 +166,40 @@ The same rules as with links, but with a !
![alt-text](/media/markdown.png "my title"){#myid .imgClass .myClass}
## Linked Images
````
You can link an image with a nested syntax like this:
[![alt-text](/media/markdown.png)](https://typemill.net)
````
You can link an image with a nested syntax like this:
[![alt-text](/media/markdown.png)](https://typemill.net)
## Image Position
````
You can controll the image position with the classes .left, .right and .middle like this:
![alt-text](/media/markdown.png){.left}
![alt-text](/media/markdown.png){.right}
![alt-text](/media/markdown.png){.middle}
````
![image float left](/media/markdown.png){.left}
The first image should float on the left side of this paragraph. This might not work with all themes. If you are a theme developer, please ensure that you support the image classes "left", "right" and "middle".
![image float right](/media/markdown.png){.right}
The second image should float on the right side of this paragraph. This might not work with all themes. If you are a theme developer, please ensure that you support the image classes "left", "right" and "middle".
![image middle](/media/markdown.png){.middle}
The thirds image should be placed above this paragraph and centered to the middle of the content area. This might not work with all themes. If you are a theme developer, please ensure that you support the image classes "left", "right" and "middle".
## Blockquote
```

View File

@@ -1,3 +1,3 @@
# Typemill
TYPEMILL is a small flat file cms designed for **writers**. It creates websites based on markdown files and is a perfect solution for text-works like studies, manuals or documentations. TYPEMILL is simple, lightweight and open source. Just download and start.
TYPEMILL is a small flat file cms designed for **writers**. It creates websites based on markdown files and is a perfect solution for text-works like studies, manuals or documentations. TYPEMILL is simple, lightweight and open source. Just download and start.