Skip to content

Commit 5ed1300

Browse files
committed
Change note to abstract
1 parent c9964f6 commit 5ed1300

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/src/learn/editor-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ Ideally, you should format your code on every save. VS Code has settings for thi
6565
4. In the search bar, type "format on save"
6666
5. Be sure the "format on save" option is ticked!
6767

68-
!!! note
68+
!!! abstract "Note"
6969

7070
If your ESLint preset has formatting rules, they may conflict with Prettier. We recommend disabling all formatting rules in your ESLint preset using [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) so that ESLint is _only_ used for catching logical mistakes. If you want to enforce that files are formatted before a pull request is merged, use [`prettier --check`](https://prettier.io/docs/en/cli.html#--check) for your continuous integration.

docs/src/learn/start-a-new-react-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you want to build a new app or a new website fully with ReactPy, we recommend
1010

1111
<!-- FIXME: This is reliant on https://github.com/reactive-python/reactpy/issues/1071 -->
1212

13-
!!! note
13+
!!! abstract "Note"
1414

1515
Some of our backend frameworks are considered _built-in_, meaning that compatibility for these backends are contained within `reactpy.backend.*`.
1616

docs/src/learn/tutorial-tic-tac-toe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You will build a small tic-tac-toe game during this tutorial. This tutorial does
66

77
</p>
88

9-
!!! note
9+
!!! abstract "Note"
1010

1111
This tutorial is designed for people who prefer to **learn by doing** and want to quickly try making something tangible. If you prefer learning each concept step by step, start with [Describing the UI.](./your-first-component.md)
1212

@@ -71,7 +71,7 @@ In the code example below, click **Run** to open the editor in a new tab using t
7171
# TODO
7272
```
7373

74-
!!! note
74+
!!! abstract "Note"
7575

7676
You can also follow this tutorial using your local development environment. To do this, you need to:
7777

docs/src/learn/writing-markup-with-psx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Keeping a button's rendering logic and markup together ensures that they stay in
3333
3434
Each React component is a JavaScript function that may contain some markup that React renders into the browser. React components use a syntax extension called PSX to represent that markup. PSX looks a lot like HTML, but it is a bit stricter and can display dynamic information. The best way to understand this is to convert some HTML markup to PSX markup.
3535
36-
!!! note
36+
!!! abstract "Note"
3737
3838
PSX and ReactPy are two separate things. They're often used together, but you _can_ use them independently of each other. PSX is a syntax extension, while ReactPy is a Python library.
3939

0 commit comments

Comments
 (0)