From 925c03acca196df73fc5d76081cf52de3aa77492 Mon Sep 17 00:00:00 2001 From: "Helmut K. C. Tessarek" Date: Mon, 24 Feb 2020 17:12:27 -0500 Subject: [PATCH] Update website --- docs/changelog_cli/index.html | 9 ++++ docs/gsoc2020/index.html | 6 ++- docs/index.html | 95 +++++++++++++++++++---------------- docs/markdown/index.html | 19 ++++++- docs/terminal/index.html | 2 +- 5 files changed, 82 insertions(+), 49 deletions(-) diff --git a/docs/changelog_cli/index.html b/docs/changelog_cli/index.html index 5119c2f0ab..42cdc3fa56 100644 --- a/docs/changelog_cli/index.html +++ b/docs/changelog_cli/index.html @@ -333,6 +333,15 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md

Joplin terminal app changelog🔗

+

cli-v1.0.154 - 2020-02-07T23:22:24Z🔗

+

cli-v1.0.153 - 2020-01-24T23:16:32Z🔗

License🔗

MIT License

-

Copyright (c) 2016-2019 Laurent Cozic

+

Copyright (c) 2016-2020 Laurent Cozic

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

diff --git a/docs/markdown/index.html b/docs/markdown/index.html index f3eef1c719..aa67c0a936 100644 --- a/docs/markdown/index.html +++ b/docs/markdown/index.html @@ -335,6 +335,7 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md

Markdown Guide🔗

Markdown is a simple way to format text that looks great on any device. It doesn't do anything fancy like change the font size, color, or type — just the essentials, using keyboard symbols you already know. Since it is plain text, it is an easy way to author notes and documents and when needed it can be converted to a rich text HTML document.

Joplin desktop and mobile applications can display both the Markdown text and the rendered rich text document.

+

Joplin follows the CommonMark specification, with additional features added via plugins.

Cheat Sheet🔗

This is a quick summary of the Markdown syntax.

@@ -479,7 +480,7 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md

Joplin Extras🔗

-

Besides the standard Mardkown syntax, Joplin supports several additional features.

+

Besides the standard Markdown syntax, Joplin supports several additional features.

Links to other notes🔗

You can create a link to a note by specifying its ID in the URL. For example:

[Link to my note](:/0b0d62d15e60409dac34f354b6e9e839)
@@ -503,6 +504,19 @@ $$
 

Chemical equations🔗

Joplin supports chemical equations via the mhchem plugin for KaTeX. This plugin is automatically enabled if you enable math notation. See the mhchem documentation for the syntax.

+

Diagrams🔗

+

You can create diagrams in Joplin using the Mermaid syntax. To add such a graph, wrap the Mermaid script inside a "```mermaid" code block like this:

+
```mermaid
+graph TD;
+    A-->B;
+    A-->C;
+    B-->D;
+    C-->D;
+```
+
+

This is how it would look with the Markdown on the left, and rendered graph on the right:

+

Mermaid support in Joplin

+

Note that Mermaid graphs are always rendered on a white background regardless of the current theme. This is because they can contain various colours that may not be compatible with the current theme.

Checkboxes🔗

Checkboxes can be added like so:

- [ ] Milk
@@ -515,7 +529,8 @@ $$
 
This is <s>strikethrough text</s> mixed with regular **Markdown**.
 

Plugins🔗

-

Joplin supports a number of plugins that can be toggled on top the standard Markdown features you would expect. These toggle-able plugins are listed below. Note: not all of the plugins are enabled by default, if the enable field is 'no' below, then open the option screen to enable the plugin. Plugins can be disabled in the same manner.

+

Joplin supports a number of plugins that can be toggled on/off to enable/disable markdown features on top of the standard Markdown features you would expect. These plugins are listed below. Note: not all of the plugins are enabled by default, if the enable field is 'no' below, then open the option screen to enable the plugin. Plugins can be disabled in the same manner.

+

Note that the functionality added by these plugins is not part of the CommonMark spec so, while they will all work within Joplin, it is not guaranteed that they will work in other Markdown readers. Often this is not an issue but keep it in mind if you require compatibility with other Markdown applications.

diff --git a/docs/terminal/index.html b/docs/terminal/index.html index d94cf250b3..fe9fe7e8fa 100644 --- a/docs/terminal/index.html +++ b/docs/terminal/index.html @@ -887,7 +887,7 @@ version Displays version information

License🔗

-

Copyright (c) 2016-2019 Laurent Cozic

+

Copyright (c) 2016-2020 Laurent Cozic

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.