-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
167 additions
and
129 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 |
---|---|---|
@@ -1 +0,0 @@ | ||
/src/lib/tutorials/files | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,4 +120,3 @@ export function wrapDbStoreWithAnalytics(hook: () => DbStore): () => DbStore { | |
} | ||
} | ||
} | ||
|
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 |
---|---|---|
@@ -1,21 +1,25 @@ | ||
# About Our Community | ||
|
||
Here is some additional info on our community! We are always welcoming newcomers, so don't hesitate to say hello ;) | ||
|
||
## Connect with Us | ||
|
||
- [Slack Group](https://join.slack.com/t/boostnote-group/shared_invite/enQtMzkxOTk4ODkyNzc0LWQxZTQwNjBlMDI4YjkyYjg2MTRiZGJhNzA1YjQ5ODA5M2M0M2NlMjI5YjhiYWQzNzgzYmU0MDMwOTlmZmZmMGE) | ||
- [Facebook Group](https://www.facebook.com/groups/boostnote/) | ||
- [Twitter](https://twitter.com/boostnoteapp) | ||
- [Blog](https://medium.com/boostnote) | ||
- [Reddit](https://www.reddit.com/r/Boostnote/) | ||
|
||
## Supporting Boostnote | ||
|
||
Boostnote is an open source project. It's an independent project with its ongoing development made possible thanks to the support by our amazing backers. | ||
|
||
Issues on Boostnote can be funded by anyone and the money will be distributed to contributors and maintainers. If you use Boostnote please consider becoming a backer: | ||
|
||
[![Let's fund issues in this repository](https://issuehunt.io/static/embed/issuehunt-button-v1.svg)](https://issuehunt.io/repos/53266139) | ||
|
||
## More Information | ||
* [Website](https://boostnote.io) | ||
* [Newsletters](https://boostnote.io/#subscribe) | ||
* [Development Configurations](https://github.com/BoostIO/Boostnote/blob/master/docs/build.md) | ||
|
||
- [Website](https://boostnote.io) | ||
- [Newsletters](https://boostnote.io/#subscribe) | ||
- [Development Configurations](https://github.com/BoostIO/Boostnote/blob/master/docs/build.md) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,118 @@ | ||
# Get Started | ||
|
||
Welcome to Boostnote :) This is a page for you to play around with. | ||
|
||
## 👨💻 Markdown Cheat Sheet 👩💻 | ||
|
||
--- | ||
|
||
### 1️⃣ Headings | ||
|
||
--- | ||
|
||
#### Heading 1 | ||
|
||
`# H1` | ||
|
||
#### Heading 2 | ||
|
||
`## H2` | ||
|
||
#### Heading 3 | ||
|
||
`### H3` | ||
|
||
#### Heading 4 | ||
|
||
`#### H4` | ||
|
||
#### Heading 5 | ||
|
||
`##### H5` | ||
|
||
#### Heading 6 | ||
|
||
`###### H6` | ||
|
||
--- | ||
|
||
### 2️⃣ Text Decoration | ||
|
||
--- | ||
|
||
#### Bold | ||
|
||
`**bold**` | ||
|
||
#### Italic | ||
|
||
`*italicized text*` | ||
|
||
#### Line Through | ||
|
||
`~~line through~~` | ||
|
||
--- | ||
|
||
### 3️⃣ List | ||
|
||
--- | ||
|
||
#### Ordered List | ||
|
||
``` | ||
1. First Item | ||
2. Second Item | ||
3. Third Item | ||
``` | ||
|
||
#### Unordered List | ||
|
||
``` | ||
* First Item | ||
* Second Item | ||
* Third Item | ||
``` | ||
|
||
--- | ||
|
||
### 4️⃣ Code Decoration | ||
|
||
--- | ||
|
||
#### Code | ||
|
||
`code` | ||
|
||
#### Code Block | ||
|
||
```html | ||
<title>Hello World!</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Hello World!</title> <link rel="stylesheet" href="style.css" /> | ||
``` | ||
|
||
--- | ||
|
||
### 5️⃣ Others | ||
|
||
--- | ||
|
||
#### Checkbox | ||
|
||
``` | ||
* [x] First Item | ||
* [ ] Second item | ||
``` | ||
|
||
#### Horizontal Rule | ||
|
||
`---` | ||
|
||
#### Link | ||
|
||
`[Boostnote](https://boostnote.io/)` | ||
|
||
#### Quote | ||
|
||
`> This is a quote from somewhere!` | ||
|
||
--- | ||
--- |
Oops, something went wrong.