Skip to content

Commit 7c2c131

Browse files
committed
翻译 markdown.md
1 parent f7c5c01 commit 7c2c131

File tree

2 files changed

+44
-76
lines changed

2 files changed

+44
-76
lines changed

en/Tutorial/Language/markdown.md

Lines changed: 43 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,68 @@
1-
HBuilderX对md提供了强大支持,是有史以来最强大、最简洁、最高效的markdown书写工具。
1+
# MarkDown
22

3-
下载HBuilderX,点菜单帮助-markdown语法说明,会打开一个md文件,里面详细演示了HBuilderX对markdown的强化。
4-
**推荐在那里实际体验**
3+
HBuilderX provides powerful support for md and is the most powerful, concise and efficient markdown writing tool ever.
54

6-
## 强大的Emmet支持、及快捷键支持
5+
Download HBuilderX, click the menu help-markdown syntax description, it will open an md file, which demonstrates the enhancement of markdown by HBuilderX in detail.
6+
**Recommended for actual experience there**
77

8-
- 标题: 敲`h2+Tab`即可生成二级标题
9-
- 图片: `img`后敲`Tab`
10-
- 链接: `a`后敲`Tab`
11-
- 表格: `table3*3`后敲`Tab`,表示生成3行3列的表格,行首生效
12-
- 分割线: `hr`后敲`Tab`
13-
- 代码块: `code`后敲`Tab`,行首生效
14-
- `day`后敲`Tab`,当前日期。注意day需在行首或前面有空格
15-
- `time`后敲`Tab`,当前时间。注意time需在行首或前面有空格
16-
- 文字加粗: `b`后敲`Tab`
17-
- 文字倾斜: `i`后敲`Tab`
18-
- 注释:快捷键`Ctrl+/`快速插入注释
8+
## Powerful Emmet support and shortcut key support
199

20-
## 强大的智能粘贴
10+
- **title**: hit `h2+Tab` to generate a secondary title
11+
- **image**: Hit `Tab` after `img`
12+
- **link**: Hit `Tab` after `a`
13+
- **table**: Knock on `Tab` after `table3*3`, it means that a table with 3 rows and 3 columns is generated, and the first row takes effect
14+
- **split line**: Hit `Tab` after `hr`
15+
- **code block**: Hit `Tab` after `code`, the beginning of the line will take effect
16+
- Press `Tab` after `day`, the current date. Note that day must have a space at the beginning or in front of the line
17+
- Press `Tab` after `time`, the current time. Note that time must have a space at the beginning or in front of the line
18+
- **Bold text**: press `Tab` after `b`
19+
- **The text is slanted**: press `Tab` after `i`
20+
- **Comment**: Shortcut key `Ctrl+/` to quickly insert a comment
2121

22-
- 图片: 支持智能粘贴,粘贴剪切板里的图形时会自动保存为本md文档的附件
23-
- 链接: 支持智能粘贴,粘贴URL会自动变成超链接格式,粘贴本地文件进来也会自动创建引用链接
24-
- 表格: 支持从excel、wps、word、number的表格中复制粘贴表格进来
22+
## Powerful smart paste
2523

26-
## 强大的智能双击
24+
- **Image**: Support smart paste, when you paste the graphics in the clipboard, it will be automatically saved as an attachment to the md document
25+
- **Link**: Supports smart pasting, the pasted URL will automatically become a hyperlink format, and the local file will automatically create a reference link when you paste it in
26+
- **Table**: Support copy and paste tables from excel, wps, word, number tables
2727

28-
- 标题: 双击`#号`可选中整个标题段落
29-
- 有序列表: `双击`前面的数字,可重新对数字排序,修正序号错误
30-
- 代码块: `双击`语法区开头,即`!左侧`,选中包含定义符的整段文字
31-
- 注释: `双击`注释首尾的定义符,选中整段注释
32-
- 链接: `双击`语法区开头,即`[`左侧,选中包含定义符的整段文字
33-
- 图片: `双击`语法区开头,即`!`左侧,选中包含定义符的整段文字
28+
## Powerful smart double click
3429

35-
## 强大的整理功能
30+
- **Title**: Double-click the `# sign` to select the entire title paragraph
31+
- **Ordered list**: `Double click` the number in front of it, you can re-sort the numbers and fix the serial number error
32+
- **Code block**: `Double-click the beginning of the `grammar area, that is, the left side of `!`, select the entire text containing the delimiter
33+
- **Comment**: `Double click` the delimiter at the beginning and end of the comment to select the whole comment
34+
- **Link**: `Double-click` the beginning of the grammar area, which is to the left of `[`, select the entire text containing the delimiter
35+
- **image**: `Double-click` the beginning of the grammar area, which is to the left of `!`, select the entire text containing the delimiter
3636

37-
- 表格:支持`Ctrl+K`可以自动整理表格格式
37+
## Powerful Format function
38+
39+
Table: Support `Ctrl+K` to automatically organize the table format
3840

3941
<img src="/static/snapshots/tutorial/markdown_table_format.gif" style="border: 1px solid #eee;"/>
4042

41-
## 直观的文档结构图
43+
## Intuitive document outline
4244

43-
HBuilderX Markdown文件,也支持显示文档结构图(大纲视图)。
45+
HBuilderX Markdown file also supports displaying document outline view.
4446

45-
windows快捷键: `Alt+w`; MacOSX快捷键:`Ctrl+w`
47+
Windows shortcut key: `Alt+w`; MacOSX shortcut key: `Ctrl+w`
4648

4749
<img src="/static/snapshots/tutorial/markdown_outline.jpg" style="zoom: 45%;border-radius: 20px;border: 1px solid #eee;"/>
4850

49-
## 实用的任务列表
50-
51-
任务列表非常实用,管理待办、已办非常便利。
52-
53-
- [ ] 任务列表-未完成任务 `快捷键:Ctrl+Alt+[`
54-
- [x] 任务列表-已完成任务 `快捷键:Ctrl+Alt+]`
55-
56-
## markdown一键分享
57-
58-
使用markdown也有一个重要的问题,那就是图片的存储,markdown文件要用到图片时必须是一个链接,在不使用图床的情况下,编辑上传图片太麻烦。
59-
60-
HBuilderX 2.8.8, 推出了 MarkDown一键分享功能。使用uniCloud作为图床 什么是[uniCloud](https://uniapp.dcloud.io/uniCloud/README),可靠、安全、简单易用、免费。
61-
62-
markdown一键分享,顾名思义是在HBuilderX中写好的markdown文档,可以简单通过编辑器右键【一键分享】菜单或者快捷键上传到云端,并生成分享链接,并且完全免费!
63-
64-
文档引用到本地图片会自动解析一并上传到云端。
65-
66-
[markdown一键分享](/Tutorial/extension/markdown_share)
67-
68-
## 云同步笔记的技巧
69-
70-
#### 云同步工具
71-
72-
首先推荐一个云同步工具,微软的onedrive。[https://skydrive.live.com/](https://skydrive.live.com/)
73-
74-
在dropbox被墙后,onedrive成为最佳选择,免费、稳定、安全、多平台。
75-
76-
win10平台自带onedrive客户端,其他平台可在上述网址下载安装。(一定要安装客户端,web版也需要翻墙)
77-
78-
配置onedrive账户后,在本机我的电脑上会出现一个onedrive文件夹,在里面新建一个“note”的文件夹(名字可自定),然后把HBuilderX写的md都存到这个文件夹中。
79-
80-
每次在HBuilderX中保存md文件后,onedrive会自动同步这个文件到云端。
81-
82-
使用其他电脑或手持设备后,也会自动看到这个文档。
83-
84-
onedrive手机端不支持直接查看markdown,可另行安装手机App,iOS上推荐使用mweb,安卓上推荐使用锤子便签。
85-
51+
## Useful task list
8652

87-
#### svn、git同步
53+
The task list is very practical, and it is very convenient to manage to-do and already done.
8854

89-
本机装好node后,利用watch监听文件变化,发现文件修改可自动提交到svn或git。
55+
- [ ] Task List-Unfinished Tasks `Shortcut Key: Ctrl+Alt+[`
56+
- [x] Task list-completed tasks `Shortcut key: Ctrl+Alt+]`
9057

91-
团队共享的待办事项同步可以用这种方式处理。
58+
## markdown share to weblink
9259

93-
在DCloud内部,个人文档大多采用方式1,公司协作文档均采用方式2。并行使用。
60+
> HBuilderX 2.8.8, launched MarkDown one-key sharing function. Use uniCloud as a picture bed What is [uniCloud](https://uniapp.dcloud.io/uniCloud/README), reliable, safe, easy to use, and free.
9461
95-
这套方案适用于pc端编写,手机端查看的场景。这个场景下,HBuilderX+markdown拥有远胜于evernote、OneNote等笔记软件的体验。启动更快捷、编写更高效、阅读更美观。
62+
There is also an important problem with using markdown, that is, the storage of pictures. When a markdown file uses a picture, it must be a link. It is too troublesome to edit and upload pictures without using the picture bed.
9663

97-
但如果经常在手机端编写并同步的话,还是云笔记本软件更合适。
64+
Markdown sharing, as the name suggests, is a markdown document written in HBuilderX, you can simply upload it to the cloud through the editor's right-click [share to weblink] menu or shortcut key, and generate a sharing link, and it's completely free!
9865

99-
总看电视和刷短视频,会让人变傻。
66+
Document references to local images will be automatically parsed and uploaded to the cloud.
10067

101-
打开HBuilderX,在键盘上敲出凝结思绪的markdown,会让你变聪明。
68+
[markdown sharing](/Tutorial/extension/markdown_share)

en/_sidebar.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
* [Vue](/Tutorial/Language/vue.md)
3636
* [Vue3](/Tutorial/Language/vue-next.md)
3737
* [Vue Doc](/Tutorial/Language/vuedoc.md)
38+
* [MarkDown](/Tutorial/Language/markdown.md)
3839
* Version Control
3940
* [Git Introduce](/Tutorial/SourceControl/Git/README.md)
4041
* [Git Windows](/Tutorial/SourceControl/Git/Windows.md)

0 commit comments

Comments
 (0)