Skip to content

Commit

Permalink
fix local refresh page problem
Browse files Browse the repository at this point in the history
  • Loading branch information
MorvanZhou committed Nov 3, 2023
1 parent 19c0167 commit 11a1d44
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
A note-taking app dependent on python.
The official web version can be found at [https://rethink.run](https://rethink.run).

![image](/img/notes-page.png)

![editor](/img/editor.png)

## Install

```shell
Expand All @@ -30,15 +34,15 @@ pip install -U rethink-note

## Usage

Quickly start the note web service with `rethink.run()`:
Quickly start the note web service with `rethink.run()`, and save your note data locally:

```python
import rethink

rethink.run()
```

If you need more custom running settings, you can use the parameters of `rethink.run()`:
If you need to customize settings, you can set the parameters in `rethink.run()`:

```python
import rethink
Expand All @@ -52,8 +56,7 @@ rethink.run(
```

All notes will be stored in the path specified by `path`,
and the `.data` folder will be created in the current directory by default.
If you want to create a data folder in another path, you can use the `path` parameter.
and the `.data` folder will be created in your `path` directory.

English and Chinese languages are supported, and the default is English `en`.
If you want to use Chinese `zh`, you can use `language="zh"` parameter.
6 changes: 5 additions & 1 deletion README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
一个依赖于 Python 的笔记应用。
官方网页版可以在 [https://rethink.run](https://rethink.run) 找到。

![image](/img/notes-page-zh.png)

![editor](/img/editor-zh.png)

## 安装

```shell
Expand All @@ -31,7 +35,7 @@ pip install -U rethink-note

## 使用

使用 `rethink.run()` 方式,快速启动笔记 web 服务:
使用 `rethink.run()` 方式,快速启动笔记 web 服务,并将你的笔记数据本地化保存

```python
import rethink
Expand Down
Binary file added img/editor-zh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/editor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/notes-page-zh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/notes-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 11a1d44

Please sign in to comment.