-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Editor mostly implemented, RasterWindow is buggy
- Loading branch information
1 parent
eb0d80d
commit d28c3cf
Showing
28 changed files
with
836 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Purpose of the ETML (Embedded Text Markup Language): | ||
|
||
* Provide some familiar way to format text | ||
* Provide some basic compatibility with HTML | ||
|
||
# Markup tags | ||
|
||
## Tags with the same behavior as their HTML counterpart | ||
|
||
* `<p></p>` | ||
* `<u></u>` | ||
* `</ br>` | ||
* `<s></s>` | ||
|
||
Note: `u` and `s` (and `o`) can be formatted with attributes | ||
* `style` (possible values: `single`, `double`, `triple`, `quad`), | ||
* `lines` (possible values: `normal`, `dotted`, `wavy`, `wavySoft`, `stripes`), | ||
* and `perWord` (possible values: `true`, `false`). | ||
|
||
## Tags special to ETML | ||
|
||
* `<o></o>` | ||
|
||
Turns the text overstriken (puts a line on top of the selected text). | ||
|
||
* `<i></i>` | ||
|
||
Marks the text as italic. The amount can be set with the attribute `amount`. | ||
|
||
* `<font type="OpenSans-reg-14" color="15"></font>` | ||
|
||
Sets the type of the font. | ||
|
||
* `</ frontTab amount="10">` | ||
|
||
Inserts a tabulator at the given position. | ||
|
||
* `</ image src="jeffrey">` | ||
|
||
Inserts an image at the current position. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.