Skip to content

Commit

Permalink
Format all src
Browse files Browse the repository at this point in the history
  • Loading branch information
Rokt33r committed Jan 19, 2020
1 parent f3834cd commit 3e5e29f
Show file tree
Hide file tree
Showing 13 changed files with 167 additions and 129 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
/src/lib/tutorials/files
6 changes: 5 additions & 1 deletion src/components/NotePage/NoteDetail/TagList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import React, { useCallback } from 'react'
import ButtonIcon from '../../atoms/ButtonIcon'
import styled from '../../../lib/styled'
import { iconColor, noteListIconColor, inputStyle } from '../../../lib/styled/styleFunctions'
import {
iconColor,
noteListIconColor,
inputStyle
} from '../../../lib/styled/styleFunctions'
import { IconTag, IconClose } from '../../icons'

interface TagListItemProps {
Expand Down
5 changes: 4 additions & 1 deletion src/components/PreferencesModal/PreferencesModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ import MarkdownTab from './MarkdownTab'
import AboutTab from './AboutTab'
import BillingTab from './BillingTab'
import ImportTab from './ImportTab'
import { backgroundColor, closeIconColor } from '../../lib/styled/styleFunctions'
import {
backgroundColor,
closeIconColor
} from '../../lib/styled/styleFunctions'
import { IconClose } from '../icons'
import { useTranslation } from 'react-i18next'

Expand Down
1 change: 0 additions & 1 deletion src/lib/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,3 @@ export function wrapDbStoreWithAnalytics(hook: () => DbStore): () => DbStore {
}
}
}

10 changes: 7 additions & 3 deletions src/lib/tutorials/files/tutorials/AboutOurCommunity.md
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)
18 changes: 9 additions & 9 deletions src/lib/tutorials/files/tutorials/Brainstorm.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

## Goals/Issues

* Point 1
* Point 2
* Point 3
- Point 1
- Point 2
- Point 3

## Research

Expand All @@ -14,16 +14,16 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus turpis nunc,

## Suggestions/Ideas

* Idea 1
* Idea 2
* Idea 3
- Idea 1
- Idea 2
- Idea 3

## Final Decision

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus turpis nunc, tempor et purus tempus, condimentum accumsan massa.

## Action Items

* [ ] Item 1
* [ ] Item 2
* [ ] Item 3
- [ ] Item 1
- [ ] Item 2
- [ ] Item 3
12 changes: 6 additions & 6 deletions src/lib/tutorials/files/tutorials/BugfixReport.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus turpis nunc,

## Why Did It Happen?

* Lorem ipsum dolor sit amet, consectetur adipiscing elit.
* Lorem ipsum dolor sit amet, consectetur adipiscing elit.
* Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.

## How Did I Fix?

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus turpis nunc, tempor et purus tempus, condimentum accumsan massa.

## How to Prevent Next Time?

* [ ] Idea 1
* [ ] Idea 2
* [ ] Idea 3
- [ ] Idea 1
- [ ] Idea 2
- [ ] Idea 3
32 changes: 29 additions & 3 deletions src/lib/tutorials/files/tutorials/GetStarted.md
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!`

---
---
Loading

0 comments on commit 3e5e29f

Please sign in to comment.