Typora使用总结

 

 

1.官网

https://www.typora.io/

2.主题

https://theme.typora.io/theme/Github-Night/

将.CSS文件放进去,关闭软件再重新打开就可以看到。

3.翻译

Welcome

Thank you for choosing Typora. This document will help you to start Typora. Please note that Typora for Windows is still in beta phase, so this document may be updated in future version-ups.

感谢您选择Typora。本文档将帮助您开始使用Typora。请注意,Windows的Typora仍处于beta测试阶段,因此本文档可能会在将来的版本升级中更新。

Live Preview实时显示

Typora use the feature: Live Preview, meaning that you could see these inline styles after you finish typing, and see block styles when you type or after you press Enter key or focus to another paragraph. Just try to type some markdown in typora, and you would see how it works.

实时预览,这意味着您可以在完成键入后看到这些内联样式,并在键入或按Enter键或聚焦到另一个段落后看到块样式。只要用markdown,你就会知道它是如何工作的。

Note: Markdown tags for inline styles, such as ** will be hidden or displayed smartly. Markdown tags for block level styles, such as ### or - [x] will be hidden once the block is rendered.

内联样式的标记,如**将被隐藏。块样式的标记,如###或-[x]将在渲染后隐藏。

You could switch to source code mode temporary from menu bar, footer bar or short cut key (ctrl+/). But we only provide very basic support for source code mode and won't recommend users to do so.

您可以从菜单栏、页脚栏或快捷键(ctrl+/)切换到源代码模式。但是我们只对源代码模式提供非常基本的支持,不建议用户这样做。

Markdown For Typora

Typora is using GitHub Flavored Markdown :https://help.github.com/articles/github-flavored-markdown/

To see full markdown Syntax references and extra usage, please check Help->Markdown Reference in menu bar or About panel.Markdown.

语法与扩展,请看Help->Markdown Reference

Shortcut Keys快捷键

You could find shortcut keys in the right side of menu items from menu bar.For more shortcut key details and custom key bindings, you can refer here.:http://support.typora.io/Shortcut-Keys/

有关更多快捷键详细信息和自定义键绑定,请参阅此处

Copy复制

We create typora and want to make it your default markdown editor, thus copy and paste means copy from another app or paste to another app, instead of copy/paste from/to another markdown editor. Therefore, by default, Copy means Copy As HTML ( and Paste means Paste from HTML).

我们创建typora并希望它成为您的默认标记编辑器,因此复制和粘贴意味着从另一个应用程序复制或粘贴到另一个应用程序,而不是从另一个标记编辑器复制/粘贴。因此,默认情况下,Copy意味着复制为HTML(Paste意味着从HTML粘贴)。

However, after click "Copy Markdown source by default", typora will copy selected text in HTML/markdown format (When pasting, rich editors will accept the HTML format, while plain text / code editor will accept the markdown source code format).

To copy Markdown source code explicitly, please use shortcut key shift+cmd+c or Copy as Markdown from menu.

To Copy as HTML Code, please select Copy as HTML Code from menu.

Smart Paste智能粘贴

Typora is able to analyze styles of the text content in your clipboard when pasting. For example, after pasting a <h1>HEADING</h1> from some website, typora will keep the 'first level heading’ format instead of paste ‘heading’ as plain text.

Typora能够在粘贴时分析剪贴板中文本内容的样式。例如,从某个网站粘贴<h1>标题</h1>后,typora将保留“第一级标题”格式,而不是将“标题”粘贴为纯文本。

To paste as markdown source or plain text, you should use paste as plain text or press the shortcut key: shift+cmd+v.

要粘贴为标记源或纯文本,应使用“粘贴为纯文本”或按快捷键:shift+cmd+v。

Themes主題

Please refer to HelpCustom Themes from menu bar.

Publish发布

Currently Typora only support to export as PDF or HTML. More data format support as import/export will be integrated in future.

目前Typora只支持导出为PDF或HTML。未来将支持更多的数据格式的导入/导出。

Auto Save and File Recovery自动保存和文件恢复

Typora support auto save feature, user could enable it from preference panel.

支持自动保存功能,用户可以从首选项面板启用。

Typora does not provide professional version control and file backup feature, but typora would backup the last file content from time to time automatically, so even when typora crashes or users forget to save the file before close, it is possible to recovery most of the work by clicking Recovery Unsaved Drafts from preference folder, and copy out backed-up files. The File name in this folder is consists of last saved date, originally file name and last saved timestamp.

Typora不提供专业的版本控制和文件备份功能,但typora会不时自动备份最后一个文件内容,因此即使typora崩溃或用户在关闭前忘记保存文件,也可以通过单击“从首选项文件夹中恢复未保存的草稿”来恢复大部分工作,并复制备份文件。此文件夹中的文件名由上次保存的日期、原始文件名和上次保存的时间戳组成。

More Useful Tips & Documents更多有用的提示和文档

https://support.typora.io/

We opened a Github issue page in case you want to start a discussion or as an alternative way to report bugs/suggestions: https://github.com/typora/typora-issues/issues

我们在Github开通了一个问题页面,以防您想要讨论或报告错误/建议:https://github.com/typora/typora-issues/issues

4.Markdown使用方法

Markdown 标题语法

语法描述:“#” + 标题文字

# 标题文字                           // 一级标题
## 标题文字                          // 二级标题
### 标题文字                         // 三级标题
#### 标题文字                        // 四级标题
##### 标题文字                       // 五级标题
###### 标题文字                      // 六级标题

注:不同的Markdown应用程序处理 # 和标题文字之间的空格方式不一致。为了兼容考虑,建议使用一个空格在# 和标题之间

Markdown 段落语法

语法描述:使用空白行将一行或者多行文本进行分隔。

注:不要使用空格(spaces)或者制表符(tabs)缩进段落。

Markdown 换行语法

语法描述:在一行的末尾添加一个或者多个空格,然后按下回车键,即可创建一个换行。

参考:https://www.jianshu.com/p/da8abdc99ce0

 

 

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值