mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Add a user guide. Fixes #543
This commit is contained in:
parent
8a16497eef
commit
8c81dc04da
4 changed files with 31 additions and 1 deletions
1
README.md
vendored
1
README.md
vendored
|
@ -101,6 +101,7 @@ Each lemmy server can set its own moderation policy; appointing site-wide admins
|
||||||
- [Docker](https://dev.lemmy.ml/docs/administration_install_docker.html)
|
- [Docker](https://dev.lemmy.ml/docs/administration_install_docker.html)
|
||||||
- [Ansible](https://dev.lemmy.ml/docs/administration_install_ansible.html)
|
- [Ansible](https://dev.lemmy.ml/docs/administration_install_ansible.html)
|
||||||
- [Kubernetes](https://dev.lemmy.ml/docs/administration_install_kubernetes.html)
|
- [Kubernetes](https://dev.lemmy.ml/docs/administration_install_kubernetes.html)
|
||||||
|
|
||||||
## Support / Donate
|
## Support / Donate
|
||||||
|
|
||||||
Lemmy is free, open-source software, meaning no advertising, monetizing, or venture capital, ever. Your donations directly support full-time development of the project.
|
Lemmy is free, open-source software, meaning no advertising, monetizing, or venture capital, ever. Your donations directly support full-time development of the project.
|
||||||
|
|
1
docs/src/SUMMARY.md
vendored
1
docs/src/SUMMARY.md
vendored
|
@ -4,6 +4,7 @@
|
||||||
- [Features](about_features.md)
|
- [Features](about_features.md)
|
||||||
- [Goals](about_goals.md)
|
- [Goals](about_goals.md)
|
||||||
- [Post and Comment Ranking](about_ranking.md)
|
- [Post and Comment Ranking](about_ranking.md)
|
||||||
|
- [Guide](about_guide.md)
|
||||||
- [Administration](administration.md)
|
- [Administration](administration.md)
|
||||||
- [Install with Docker](administration_install_docker.md)
|
- [Install with Docker](administration_install_docker.md)
|
||||||
- [Install with Ansible](administration_install_ansible.md)
|
- [Install with Ansible](administration_install_ansible.md)
|
||||||
|
|
28
docs/src/about_guide.md
vendored
Normal file
28
docs/src/about_guide.md
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# Lemmy Guide
|
||||||
|
|
||||||
|
Start typing...
|
||||||
|
|
||||||
|
- `@a_user_name` to get a list of usernames.
|
||||||
|
- `#a_community` to get a list of communities.
|
||||||
|
- `:emoji` to get a list of emojis.
|
||||||
|
|
||||||
|
## Markdown Guide
|
||||||
|
|
||||||
|
Type | Or | … to Get
|
||||||
|
--- | --- | ---
|
||||||
|
\*Italic\* | \_Italic\_ | _Italic_
|
||||||
|
\*\*Bold\*\* | \_\_Bold\_\_ | **Bold**
|
||||||
|
\# Heading 1 | Heading 1 <br> ========= | # Heading 1
|
||||||
|
\## Heading 2 | Heading 2 <br>--------- | ## Heading 2
|
||||||
|
\[Link\](http://a.com) | \[Link\]\[1\]<br>⋮ <br>\[1\]: http://b.org | [Link](https://commonmark.org/)
|
||||||
|
!\[Image\](http://url/a.png) | !\[Image\]\[1\]<br>⋮ <br>\[1\]: http://url/b.jpg | ![Markdown](https://commonmark.org/help/images/favicon.png)
|
||||||
|
\> Blockquote | | > Blockquote
|
||||||
|
\* List <br>\* List <br>\* List | \- List <br>\- List <br>\- List <br> | * List <br>* List <br>* List <br>
|
||||||
|
1\. One <br>2\. Two <br>3\. Three | 1) One<br>2) Two<br>3) Three | 1. One<br>2. Two<br>3. Three
|
||||||
|
Horizontal Rule <br>\--- | Horizontal Rule<br>\*\*\* | Horizontal Rule <br>* * *
|
||||||
|
\`Inline code\` with backticks | |`Inline code` with backticks
|
||||||
|
\`\`\`<br>\# code block <br>print '3 backticks or'<br>print 'indent 4 spaces' <br>\`\`\` | ····\# code block<br>····print '3 backticks or'<br>····print 'indent 4 spaces' | \# code block <br>print '3 backticks or'<br>print 'indent 4 spaces'
|
||||||
|
::: spoiler hidden stuff<br>*a bunch of spoilers here*<br>::: | | <details><summary> hidden stuff </summary><p><em>a bunch of spoilers here</em></p></details>
|
||||||
|
|
||||||
|
[CommonMark Tutorial](https://commonmark.org/help/tutorial/)
|
||||||
|
|
2
ui/src/utils.ts
vendored
2
ui/src/utils.ts
vendored
|
@ -42,7 +42,7 @@ import emojiShortName from 'emoji-short-name';
|
||||||
import Toastify from 'toastify-js';
|
import Toastify from 'toastify-js';
|
||||||
|
|
||||||
export const repoUrl = 'https://github.com/dessalines/lemmy';
|
export const repoUrl = 'https://github.com/dessalines/lemmy';
|
||||||
export const markdownHelpUrl = 'https://commonmark.org/help/';
|
export const markdownHelpUrl = '/docs/about_guide.html';
|
||||||
export const archiveUrl = 'https://archive.is';
|
export const archiveUrl = 'https://archive.is';
|
||||||
|
|
||||||
export const postRefetchSeconds: number = 60 * 1000;
|
export const postRefetchSeconds: number = 60 * 1000;
|
||||||
|
|
Loading…
Reference in a new issue