diff --git a/docs/HISTORY/Js.md b/docs/HISTORY/Js.md deleted file mode 100644 index e69de29..0000000 diff --git a/docs/HISTORY/README.html b/docs/HISTORY/README.html deleted file mode 100644 index dc37bbb..0000000 --- a/docs/HISTORY/README.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - HISTORY/README - - - - -
-
-
- -
JERRY♎GITHUB
-
- -
-
-

#人生路途

-
    -
  1. 开篇小论
  2. -
  3. 职业规划 - DREAM START
  4. -
- -
-
- - \ No newline at end of file diff --git a/docs/HISTORY/README.md b/docs/HISTORY/README.md deleted file mode 100644 index 7e5ec91..0000000 --- a/docs/HISTORY/README.md +++ /dev/null @@ -1,4 +0,0 @@ -#人生路途 - -1. [开篇小论](https://github.com/decadestory/Blog/blob/master/Life/%E5%BC%80%E7%AF%87%E5%B0%8F%E8%AE%BA.md) -2. [职业规划 - DREAM START](https://github.com/decadestory/Blog/blob/master/Life/%E8%81%8C%E4%B8%9A%E8%A7%84%E5%88%92.md) diff --git "a/docs/HISTORY/Windows\344\270\213visual studio code\346\220\255\345\273\272golang\345\274\200\345\217\221\347\216\257\345\242\203.html" "b/docs/HISTORY/Windows\344\270\213visual studio code\346\220\255\345\273\272golang\345\274\200\345\217\221\347\216\257\345\242\203.html" deleted file mode 100644 index d531660..0000000 --- "a/docs/HISTORY/Windows\344\270\213visual studio code\346\220\255\345\273\272golang\345\274\200\345\217\221\347\216\257\345\242\203.html" +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - HISTORY/Windows下visual studio code搭建golang开发环境 - - - - -
-
-
- -
JERRY♎GITHUB
-
- -
-
-

Windows下visual studio code搭建golang开发环境

-

序幕

-

其实环境搭建没什么难的,但是遇到一些问题,主要是有些网站资源访问不了(如:golang.org), -导致一些包无法安装,最终会导致环境搭建失败,跟据这个教程几步,我们将可以快速的构建golang的开发环境。

-

开发环境:

-

image

-

一、安装

-

这里我用需要安装一些工具:

-

1.Visual Studio Code 1.0.0

-

2.Golang下载

-
这里我使用的是Go1.6.
-
-

3.git下载

-
这一步跟建环境没什么关系,
-但是之后要引用一些包需要它.
-
-

4.安装vscode-go 插件

-

image

-
安装方法:打开vscode 按F1 然后选择安装扩展 选择go 下载后 重启
-
-

image

-

5.下载vscode扩展依赖工具

-
vscode-go 插件需要一些工具,这些功具默认需要这样安装:
-
-go get -u -v github.com/nsf/gocode
-go get -u -v github.com/rogpeppe/godef
-go get -u -v github.com/golang/lint/golint
-go get -u -v github.com/lukehoban/go-outline
-go get -u -v sourcegraph.com/sqs/goreturns
-go get -u -v golang.org/x/tools/cmd/gorename
-go get -u -v github.com/tpng/gopkgs
-go get -u -v github.com/newhook/go-symbols
-go get -u -v golang.org/x/tools/cmd/guru
-(以及dlv调试运行工具)
-
-这些内容最终目的是要在gopath中bin文件夹中生成一些exe文件。
-但是,这里安装时遇到了一些问题,有一些会安装失败,报错信息主要意思是说无法链接啊,无法找到啊之类的。
-这里我省略这些步骤。直接下载我已经生成的exe包,放在gopath的bin文件夹中就行了。如下图:
-
-

image

-

二、配置

-

1.GOPATH:这个是你的工作目录,请在系统新加一个GOPATH指定你的工作目录,并且在工作目录中新建 -bin,pkg,src三个文件夹。

-

2.Git:将git安装目录下的bin目录加入Path环境变量。

-

3.用vscode打开src文件夹添加两个文件如下: -image

-
{
-    "files.autoSave": "onFocusChange",
-    "go.buildOnSave": true,
-    "go.lintOnSave": true,
-    "go.vetOnSave": true,
-    "go.buildTags": "",
-    "go.buildFlags": [],
-    "go.lintFlags": [],
-    "go.vetFlags": [],
-    "go.coverOnSave": false,
-    "go.useCodeSnippetsOnFunctionSuggest": false,
-    "go.formatOnSave": true,
-    "go.formatTool": "goreturns",
-    "go.goroot": "C:\\Go",
-    "go.gopath": "H:\\Projects\\GitHub\\Go",
-    "go.gocodeAutoBuild": true
-}
-
-

image

-
{
-	"version": "0.2.0",
-	"configurations": [
-		{
-			"name": "Launch",
-			"type": "go",
-			"request": "launch",
-			"mode": "debug",
-			"remotePath": "",
-			"port": 2345,
-			"host": "127.0.0.1",
-			"program": "${workspaceRoot}\\helloworld",
-			"env": {},
-			"args": []
-		}
-	]
-}
-
-

三、演示

-

##运行 -image -##调试 -image

-

四、总结

-

这些库因为不能获取,我在github上找了好久,最后编译成exe,国内找不到几篇文章提到这个问题, -所以写个博客,让大家方便的开发。希望大家快乐的学习go语言。

- -
-
- - \ No newline at end of file diff --git "a/docs/HISTORY/Windows\344\270\213visual studio code\346\220\255\345\273\272golang\345\274\200\345\217\221\347\216\257\345\242\203.md" "b/docs/HISTORY/Windows\344\270\213visual studio code\346\220\255\345\273\272golang\345\274\200\345\217\221\347\216\257\345\242\203.md" deleted file mode 100644 index a26a598..0000000 --- "a/docs/HISTORY/Windows\344\270\213visual studio code\346\220\255\345\273\272golang\345\274\200\345\217\221\347\216\257\345\242\203.md" +++ /dev/null @@ -1,115 +0,0 @@ -# Windows下visual studio code搭建golang开发环境 -## 序幕 - -其实环境搭建没什么难的,但是遇到一些问题,主要是有些网站资源访问不了(如:golang.org), -导致一些包无法安装,最终会导致环境搭建失败,跟据这个教程几步,我们将可以快速的构建golang的开发环境。 - -### 开发环境: -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420134611.jpg) - - -## 一、安装 -这里我用需要安装一些工具: - -1.[Visual Studio Code 1.0.0](https://www.visualstudio.com/products/code-vs) - -2.[Golang下载](http://www.golangtc.com/download) -``` -这里我使用的是Go1.6. -``` - -3.[git下载](https://git-scm.com/download/) -``` -这一步跟建环境没什么关系, -但是之后要引用一些包需要它. -``` - -4.[安装vscode-go 插件](https://marketplace.visualstudio.com/items?itemName=lukehoban.Go) - -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420141250.jpg) - -``` -安装方法:打开vscode 按F1 然后选择安装扩展 选择go 下载后 重启 -``` -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420141705.jpg) - -5.[下载vscode扩展依赖工具](http://pan.baidu.com/s/1qY7pRa8) - -``` -vscode-go 插件需要一些工具,这些功具默认需要这样安装: - -go get -u -v github.com/nsf/gocode -go get -u -v github.com/rogpeppe/godef -go get -u -v github.com/golang/lint/golint -go get -u -v github.com/lukehoban/go-outline -go get -u -v sourcegraph.com/sqs/goreturns -go get -u -v golang.org/x/tools/cmd/gorename -go get -u -v github.com/tpng/gopkgs -go get -u -v github.com/newhook/go-symbols -go get -u -v golang.org/x/tools/cmd/guru -(以及dlv调试运行工具) - -这些内容最终目的是要在gopath中bin文件夹中生成一些exe文件。 -但是,这里安装时遇到了一些问题,有一些会安装失败,报错信息主要意思是说无法链接啊,无法找到啊之类的。 -这里我省略这些步骤。直接下载我已经生成的exe包,放在gopath的bin文件夹中就行了。如下图: -``` -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420142649.jpg) - -## 二、配置 - -1.GOPATH:这个是你的工作目录,请在系统新加一个GOPATH指定你的工作目录,并且在工作目录中新建 -bin,pkg,src三个文件夹。 - -2.Git:将git安装目录下的bin目录加入Path环境变量。 - -3.用vscode打开src文件夹添加两个文件如下: -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420143835.jpg) -``` -{ - "files.autoSave": "onFocusChange", - "go.buildOnSave": true, - "go.lintOnSave": true, - "go.vetOnSave": true, - "go.buildTags": "", - "go.buildFlags": [], - "go.lintFlags": [], - "go.vetFlags": [], - "go.coverOnSave": false, - "go.useCodeSnippetsOnFunctionSuggest": false, - "go.formatOnSave": true, - "go.formatTool": "goreturns", - "go.goroot": "C:\\Go", - "go.gopath": "H:\\Projects\\GitHub\\Go", - "go.gocodeAutoBuild": true -} -``` -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420144012.jpg) -``` -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Launch", - "type": "go", - "request": "launch", - "mode": "debug", - "remotePath": "", - "port": 2345, - "host": "127.0.0.1", - "program": "${workspaceRoot}\\helloworld", - "env": {}, - "args": [] - } - ] -} -``` -## 三、演示 - -##运行 -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420151454.jpg) -##调试 -![image](http://images.cnblogs.com/cnblogs_com/JerryNo1/818380/o_QQ%e6%88%aa%e5%9b%be20160420151303.jpg) - -# 四、总结 -这些库因为不能获取,我在github上找了好久,最后编译成exe,国内找不到几篇文章提到这个问题, -所以写个博客,让大家方便的开发。希望大家快乐的学习go语言。 \ No newline at end of file diff --git a/docs/HISTORY/h5.html b/docs/HISTORY/h5.html deleted file mode 100644 index cee6b64..0000000 --- a/docs/HISTORY/h5.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - HISTORY/h5 - - - - -
-
-
- -
JERRY♎GITHUB
-
- -
-
-

常用Html5特性

-

1、手机html5 App标准头

-
<meta name="viewport" content="width=device-width,user-scalable=no">
-
-

2、iPhone 手机上默认值是(电话号码显示为拨号的超链接)

-
<meta name="format-detection" content="telephone=no"/>
-
-

3、禁用右键CSS

-
:root {
--webkit-touch-callout:none;
--webkit-user-select:none;
--khtml-user-select:none;
--moz-user-select:none;
--ms-user-select:none;
-user-select:none;
-}
-
- -
-
- - \ No newline at end of file diff --git a/docs/HISTORY/h5.md b/docs/HISTORY/h5.md deleted file mode 100644 index 3d560fc..0000000 --- a/docs/HISTORY/h5.md +++ /dev/null @@ -1,24 +0,0 @@ -常用Html5特性 --------- - -1、手机html5 App标准头 - -``` - -``` -2、iPhone 手机上默认值是(电话号码显示为拨号的超链接) - -``` - -``` -3、禁用右键CSS -``` -:root { --webkit-touch-callout:none; --webkit-user-select:none; --khtml-user-select:none; --moz-user-select:none; --ms-user-select:none; -user-select:none; -} -``` diff --git "a/docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266\342\200\224\342\200\224Swift.Net.md" "b/docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266_Swift.Net.md" similarity index 100% rename from "docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266\342\200\224\342\200\224Swift.Net.md" rename to "docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266_Swift.Net.md" diff --git a/docs/HISTORY/Js.html "b/docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266_Swift.html" similarity index 65% rename from docs/HISTORY/Js.html rename to "docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266_Swift.html" index 851ba51..c46e5d3 100644 --- a/docs/HISTORY/Js.html +++ "b/docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266_Swift.html" @@ -4,7 +4,7 @@ - HISTORY/Js + HISTORY/基于EF6的快速开发Web框架_Swift @@ -17,7 +17,7 @@
diff --git "a/docs/HISTORY/\345\274\200\347\257\207\345\260\217\350\256\272.html" "b/docs/HISTORY/\345\274\200\347\257\207\345\260\217\350\256\272.html" index 9c2ae48..bc089df 100644 --- "a/docs/HISTORY/\345\274\200\347\257\207\345\260\217\350\256\272.html" +++ "b/docs/HISTORY/\345\274\200\347\257\207\345\260\217\350\256\272.html" @@ -17,7 +17,7 @@
diff --git "a/docs/HISTORY/\350\201\214\344\270\232\350\247\204\345\210\222.html" "b/docs/HISTORY/\350\201\214\344\270\232\350\247\204\345\210\222.html" index c82e66e..2405549 100644 --- "a/docs/HISTORY/\350\201\214\344\270\232\350\247\204\345\210\222.html" +++ "b/docs/HISTORY/\350\201\214\344\270\232\350\247\204\345\210\222.html" @@ -17,7 +17,7 @@
diff --git "a/docs/SandDocs/SandDocs\344\270\200\344\270\252Github\345\215\232\345\256\242\347\224\237\346\210\220\345\267\245\345\205\267.html" "b/docs/SandDocs/SandDocs\344\270\200\344\270\252Github\345\215\232\345\256\242\347\224\237\346\210\220\345\267\245\345\205\267.html" index bc23391..8e7d0c4 100644 --- "a/docs/SandDocs/SandDocs\344\270\200\344\270\252Github\345\215\232\345\256\242\347\224\237\346\210\220\345\267\245\345\205\267.html" +++ "b/docs/SandDocs/SandDocs\344\270\200\344\270\252Github\345\215\232\345\256\242\347\224\237\346\210\220\345\267\245\345\205\267.html" @@ -17,7 +17,7 @@
diff --git "a/docs/\344\270\200\344\272\233\345\260\217\350\257\227/\345\216\206\345\217\262\350\257\227\351\233\206.html" "b/docs/\344\270\200\344\272\233\345\260\217\350\257\227/\345\216\206\345\217\262\350\257\227\351\233\206.html" index bae08cd..72a4a2a 100644 --- "a/docs/\344\270\200\344\272\233\345\260\217\350\257\227/\345\216\206\345\217\262\350\257\227\351\233\206.html" +++ "b/docs/\344\270\200\344\272\233\345\260\217\350\257\227/\345\216\206\345\217\262\350\257\227\351\233\206.html" @@ -17,7 +17,7 @@
diff --git "a/docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266\342\200\224\342\200\224Swift.html" "b/docs/\345\205\263\344\272\216JERRY/\345\205\263\344\272\216JERRY.html" similarity index 63% rename from "docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266\342\200\224\342\200\224Swift.html" rename to "docs/\345\205\263\344\272\216JERRY/\345\205\263\344\272\216JERRY.html" index 7d75f70..5a09e2e 100644 --- "a/docs/HISTORY/\345\237\272\344\272\216EF6\347\232\204\345\277\253\351\200\237\345\274\200\345\217\221Web\346\241\206\346\236\266\342\200\224\342\200\224Swift.html" +++ "b/docs/\345\205\263\344\272\216JERRY/\345\205\263\344\272\216JERRY.html" @@ -4,7 +4,7 @@ - HISTORY/基于EF6的快速开发Web框架——Swift + 关于JERRY/关于JERRY @@ -17,12 +17,14 @@
- +

关于JERRY

+

这个人啥也不是

+
diff --git "a/docs/\345\205\263\344\272\216JERRY/\345\205\263\344\272\216JERRY.md" "b/docs/\345\205\263\344\272\216JERRY/\345\205\263\344\272\216JERRY.md" new file mode 100644 index 0000000..7c0a070 --- /dev/null +++ "b/docs/\345\205\263\344\272\216JERRY/\345\205\263\344\272\216JERRY.md" @@ -0,0 +1,3 @@ +# 关于JERRY + +## 这个人啥也不是 \ No newline at end of file diff --git "a/docs/\347\254\224\350\256\260\346\234\254/README.html" "b/docs/\347\254\224\350\256\260\346\234\254/README.html" deleted file mode 100644 index 2609ff3..0000000 --- "a/docs/\347\254\224\350\256\260\346\234\254/README.html" +++ /dev/null @@ -1,735 +0,0 @@ - - - - - - - 笔记本/README - - - - -
-
-
- -
JERRY♎GITHUB
-
- -
-
-

goldmark

-

https://pkg.go.dev/github.com/yuin/goldmark -https://github.com/yuin/goldmark/actions?query=workflow:test -https://coveralls.io/github/yuin/goldmark -https://goreportcard.com/report/github.com/yuin/goldmark

-
-

A Markdown parser written in Go. Easy to extend, standards-compliant, well-structured.

-
-

goldmark is compliant with CommonMark 0.31.2.

- -

Motivation

-

I needed a Markdown parser for Go that satisfies the following requirements:

- -

golang-commonmark may be a good choice, but it seems to be a copy of markdown-it.

-

blackfriday.v2 is a fast and widely-used implementation, but is not CommonMark-compliant and cannot be extended from outside of the package, since its AST uses structs instead of interfaces.

-

Furthermore, its behavior differs from other implementations in some cases, especially regarding lists: Deep nested lists don't output correctly #329, List block cannot have a second line #244, etc.

-

This behavior sometimes causes problems. If you migrate your Markdown text from GitHub to blackfriday-based wikis, many lists will immediately be broken.

-

As mentioned above, CommonMark is complicated and hard to implement, so Markdown parsers based on CommonMark are few and far between.

-

Features

- -

Installation

-
1$ go get github.com/yuin/goldmark
-

Usage

-

Import packages:

-
1import (
-2    "bytes"
-3    "github.com/yuin/goldmark"
-4)
-

Convert Markdown documents with the CommonMark-compliant mode:

-
1var buf bytes.Buffer
-2if err := goldmark.Convert(source, &buf); err != nil {
-3  panic(err)
-4}
-

With options

-
1var buf bytes.Buffer
-2if err := goldmark.Convert(source, &buf, parser.WithContext(ctx)); err != nil {
-3  panic(err)
-4}
-
- - - - - - - - - - - - - - -
Functional optionTypeDescription
parser.WithContextA parser.ContextContext for the parsing phase.
-

Context options

- - - - - - - - - - - - - - - -
Functional optionTypeDescription
parser.WithIDsA parser.IDsIDs allows you to change logics that are related to element id(ex: Auto heading id generation).
-

Custom parser and renderer

-
 1import (
- 2    "bytes"
- 3    "github.com/yuin/goldmark"
- 4    "github.com/yuin/goldmark/extension"
- 5    "github.com/yuin/goldmark/parser"
- 6    "github.com/yuin/goldmark/renderer/html"
- 7)
- 8
- 9md := goldmark.New(
-10          goldmark.WithExtensions(extension.GFM),
-11          goldmark.WithParserOptions(
-12              parser.WithAutoHeadingID(),
-13          ),
-14          goldmark.WithRendererOptions(
-15              html.WithHardWraps(),
-16              html.WithXHTML(),
-17          ),
-18      )
-19var buf bytes.Buffer
-20if err := md.Convert(source, &buf); err != nil {
-21    panic(err)
-22}
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Functional optionTypeDescription
goldmark.WithParserparser.ParserThis option must be passed before goldmark.WithParserOptions and goldmark.WithExtensions
goldmark.WithRendererrenderer.RendererThis option must be passed before goldmark.WithRendererOptions and goldmark.WithExtensions
goldmark.WithParserOptions...parser.Option
goldmark.WithRendererOptions...renderer.Option
goldmark.WithExtensions...goldmark.Extender
-

Parser and Renderer options

-

Parser options

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Functional optionTypeDescription
parser.WithBlockParsersA util.PrioritizedSlice whose elements are parser.BlockParserParsers for parsing block level elements.
parser.WithInlineParsersA util.PrioritizedSlice whose elements are parser.InlineParserParsers for parsing inline level elements.
parser.WithParagraphTransformersA util.PrioritizedSlice whose elements are parser.ParagraphTransformerTransformers for transforming paragraph nodes.
parser.WithASTTransformersA util.PrioritizedSlice whose elements are parser.ASTTransformerTransformers for transforming an AST.
parser.WithAutoHeadingID-Enables auto heading ids.
parser.WithAttribute-Enables custom attributes. Currently only headings supports attributes.
-

HTML Renderer options

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Functional optionTypeDescription
html.WithWriterhtml.Writerhtml.Writer for writing contents to an io.Writer.
html.WithHardWraps-Render newlines as <br>.
html.WithXHTML-Render as XHTML.
html.WithUnsafe-By default, goldmark does not render raw HTML or potentially dangerous links. With this option, goldmark renders such content as written.
-

Built-in extensions

- -

Attributes

-

The parser.WithAttribute option allows you to define attributes on some elements.

-

Currently only headings support attributes.

-

Attributes are being discussed in the -CommonMark forum. -This syntax may possibly change in the future.

-

Headings

-
## heading ## {#id .className attrName=attrValue class="class1 class2"}
-
-## heading {#id .className attrName=attrValue class="class1 class2"}
-
-
heading {#id .className attrName=attrValue}
-============
-
-

Table extension

-

The Table extension implements Table(extension), as -defined in GitHub Flavored Markdown Spec.

-

Specs are defined for XHTML, so specs use some deprecated attributes for HTML5.

-

You can override alignment rendering method via options.

- - - - - - - - - - - - - - - -
Functional optionTypeDescription
extension.WithTableCellAlignMethodextension.TableCellAlignMethodOption indicates how are table cells aligned.
-

Typographer extension

-

The Typographer extension translates plain ASCII punctuation characters into typographic-punctuation HTML entities.

-

Default substitutions are:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PunctuationDefault entity
'&lsquo;, &rsquo;
"&ldquo;, &rdquo;
--&ndash;
---&mdash;
...&hellip;
<<&laquo;
>>&raquo;
-

You can override the default substitutions via extensions.WithTypographicSubstitutions:

-
 1markdown := goldmark.New(
- 2    goldmark.WithExtensions(
- 3        extension.NewTypographer(
- 4            extension.WithTypographicSubstitutions(extension.TypographicSubstitutions{
- 5                extension.LeftSingleQuote:  []byte("&sbquo;"),
- 6                extension.RightSingleQuote: nil, // nil disables a substitution
- 7            }),
- 8        ),
- 9    ),
-10)
-

Linkify extension

-

The Linkify extension implements Autolinks(extension), as -defined in GitHub Flavored Markdown Spec.

-

Since the spec does not define details about URLs, there are numerous ambiguous cases.

-

You can override autolinking patterns via options.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Functional optionTypeDescription
extension.WithLinkifyAllowedProtocols[][]byte | []stringList of allowed protocols such as []string{ "http:" }
extension.WithLinkifyURLRegexp*regexp.RegexpRegexp that defines URLs, including protocols
extension.WithLinkifyWWWRegexp*regexp.RegexpRegexp that defines URL starting with www.. This pattern corresponds to the extended www autolink
extension.WithLinkifyEmailRegexp*regexp.RegexpRegexp that defines email addresses`
-

Example, using xurls:

-
 1import "mvdan.cc/xurls/v2"
- 2
- 3markdown := goldmark.New(
- 4    goldmark.WithRendererOptions(
- 5        html.WithXHTML(),
- 6        html.WithUnsafe(),
- 7    ),
- 8    goldmark.WithExtensions(
- 9        extension.NewLinkify(
-10            extension.WithLinkifyAllowedProtocols([]string{
-11                "http:",
-12                "https:",
-13            }),
-14            extension.WithLinkifyURLRegexp(
-15                xurls.Strict,
-16            ),
-17        ),
-18    ),
-19)
-

Footnotes extension

-

The Footnote extension implements PHP Markdown Extra: Footnotes.

-

This extension has some options:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Functional optionTypeDescription
extension.WithFootnoteIDPrefix[]byte | stringa prefix for the id attributes.
extension.WithFootnoteIDPrefixFunctionfunc(gast.Node) []bytea function that determines the id attribute for given Node.
extension.WithFootnoteLinkTitle[]byte | stringan optional title attribute for footnote links.
extension.WithFootnoteBacklinkTitle[]byte | stringan optional title attribute for footnote backlinks.
extension.WithFootnoteLinkClass[]byte | stringa class for footnote links. This defaults to footnote-ref.
extension.WithFootnoteBacklinkClass[]byte | stringa class for footnote backlinks. This defaults to footnote-backref.
extension.WithFootnoteBacklinkHTML[]byte | stringa class for footnote backlinks. This defaults to &#x21a9;&#xfe0e;.
-

Some options can have special substitutions. Occurrences of “^^” in the string will be replaced by the corresponding footnote number in the HTML output. Occurrences of “%%” will be replaced by a number for the reference (footnotes can have multiple references).

-

extension.WithFootnoteIDPrefix and extension.WithFootnoteIDPrefixFunction are useful if you have multiple Markdown documents displayed inside one HTML document to avoid footnote ids to clash each other.

-

extension.WithFootnoteIDPrefix sets fixed id prefix, so you may write codes like the following:

-
 1for _, path := range files {
- 2    source := readAll(path)
- 3    prefix := getPrefix(path)
- 4
- 5    markdown := goldmark.New(
- 6        goldmark.WithExtensions(
- 7            NewFootnote(
- 8                WithFootnoteIDPrefix(path),
- 9            ),
-10        ),
-11    )
-12    var b bytes.Buffer
-13    err := markdown.Convert(source, &b)
-14    if err != nil {
-15        t.Error(err.Error())
-16    }
-17}
-

extension.WithFootnoteIDPrefixFunction determines an id prefix by calling given function, so you may write codes like the following:

-
 1markdown := goldmark.New(
- 2    goldmark.WithExtensions(
- 3        NewFootnote(
- 4                WithFootnoteIDPrefixFunction(func(n gast.Node) []byte {
- 5                    v, ok := n.OwnerDocument().Meta()["footnote-prefix"]
- 6                    if ok {
- 7                        return util.StringToReadOnlyBytes(v.(string))
- 8                    }
- 9                    return nil
-10                }),
-11        ),
-12    ),
-13)
-14
-15for _, path := range files {
-16    source := readAll(path)
-17    var b bytes.Buffer
-18
-19    doc := markdown.Parser().Parse(text.NewReader(source))
-20    doc.Meta()["footnote-prefix"] = getPrefix(path)
-21    err := markdown.Renderer().Render(&b, source, doc)
-22}
-

You can use goldmark-meta to define a id prefix in the markdown document:

-
1---
-2title: document title
-3slug: article1
-4footnote-prefix: article1
-5---
-6
-7# My article
-8
-

CJK extension

-

CommonMark gives compatibilities a high priority and original markdown was designed by westerners. So CommonMark lacks considerations for languages like CJK.

-

This extension provides additional options for CJK users.

- - - - - - - - - - - - - - - - - - - - -
Functional optionTypeDescription
extension.WithEastAsianLineBreaks...extension.EastAsianLineBreaksStyleSoft line breaks are rendered as a newline. Some asian users will see it as an unnecessary space. With this option, soft line breaks between east asian wide characters will be ignored. This defaults to EastAsianLineBreaksStyleSimple.
extension.WithEscapedSpace-Without spaces around an emphasis started with east asian punctuations, it is not interpreted as an emphasis(as defined in CommonMark spec). With this option, you can avoid this inconvenient behavior by putting 'not rendered' spaces around an emphasis like 太郎は\ **「こんにちわ」**\ といった.
-

Styles of Line Breaking

- - - - - - - - - - - - - - - - - -
StyleDescription
EastAsianLineBreaksStyleSimpleSoft line breaks are ignored if both sides of the break are east asian wide character. This behavior is the same as east_asian_line_breaks in Pandoc.
EastAsianLineBreaksCSS3DraftThis option implements CSS text level3 Segment Break Transformation Rules with some enhancements.
-

Example of EastAsianLineBreaksStyleSimple

-

Input Markdown:

-
1私はプログラマーです。
-2東京の会社に勤めています。
-3GoでWebアプリケーションを開発しています。
-

Output:

-
1<p>私はプログラマーです。東京の会社に勤めています。\nGoでWebアプリケーションを開発しています。</p>
-

Example of EastAsianLineBreaksCSS3Draft

-

Input Markdown:

-
1私はプログラマーです。
-2東京の会社に勤めています。
-3GoでWebアプリケーションを開発しています。
-

Output:

-
1<p>私はプログラマーです。東京の会社に勤めています。GoでWebアプリケーションを開発しています。</p>
-

Security

-

By default, goldmark does not render raw HTML or potentially-dangerous URLs. -If you need to gain more control over untrusted contents, it is recommended that you -use an HTML sanitizer such as bluemonday.

-

Benchmark

-

You can run this benchmark in the _benchmark directory.

-

against other golang libraries

-

blackfriday v2 seems to be the fastest, but as it is not CommonMark compliant, its performance cannot be directly compared to that of the CommonMark-compliant libraries.

-

goldmark, meanwhile, builds a clean, extensible AST structure, achieves full compliance with -CommonMark, and consumes less memory, all while being reasonably fast.

- -
BenchmarkMarkdown/Blackfriday-v2-8                   302           3743747 ns/op         3290445 B/op      20050 allocs/op
-BenchmarkMarkdown/GoldMark-8                         280           4200974 ns/op         2559738 B/op      13435 allocs/op
-BenchmarkMarkdown/CommonMark-8                       226           5283686 ns/op         2702490 B/op      20792 allocs/op
-BenchmarkMarkdown/Lute-8                              12          92652857 ns/op        10602649 B/op      40555 allocs/op
-BenchmarkMarkdown/GoMarkdown-8                        13          81380167 ns/op         2245002 B/op      22889 allocs/op
-
-

against cmark (CommonMark reference implementation written in C)

- -
----------- cmark -----------
-file: _data.md
-iteration: 50
-average: 0.0044073057 sec
-------- goldmark -------
-file: _data.md
-iteration: 50
-average: 0.0041611990 sec
-
-

As you can see, goldmark's performance is on par with cmark's.

-

Extensions

-

List of extensions

- -

Loading extensions at runtime

-

goldmark-dynamic allows you to write a goldmark extension in Lua and load it at runtime without re-compilation.

-

Please refer to goldmark-dynamic for details.

-

goldmark internal(for extension developers)

-

Overview

-

goldmark's Markdown processing is outlined in the diagram below.

-
            <Markdown in []byte, parser.Context>
-                           |
-                           V
-            +-------- parser.Parser ---------------------------
-            | 1. Parse block elements into AST
-            |   1. If a parsed block is a paragraph, apply 
-            |      ast.ParagraphTransformer
-            | 2. Traverse AST and parse blocks.
-            |   1. Process delimiters(emphasis) at the end of
-            |      block parsing
-            | 3. Apply parser.ASTTransformers to AST
-                           |
-                           V
-                      <ast.Node>
-                           |
-                           V
-            +------- renderer.Renderer ------------------------
-            | 1. Traverse AST and apply renderer.NodeRenderer
-            |    corespond to the node type
-
-                           |
-                           V
-                        <Output>
-
-

Parsing

-

Markdown documents are read through text.Reader interface.

-

AST nodes do not have concrete text. AST nodes have segment information of the documents, represented by text.Segment .

-

text.Segment has 3 attributes: Start, End, Padding .

-

(TBC)

-

TODO

-

See extension directory for examples of extensions.

-

Summary:

-
    -
  1. Define AST Node as a struct in which ast.BaseBlock or ast.BaseInline is embedded.
  2. -
  3. Write a parser that implements parser.BlockParser or parser.InlineParser.
  4. -
  5. Write a renderer that implements renderer.NodeRenderer.
  6. -
  7. Define your goldmark extension that implements goldmark.Extender.
  8. -
-

Donation

-

BTC: 1NEDSyUmo4SMTDP83JJQSWi1MvQUGGNMZB

-

License

-

MIT

-

Author

-

Yusuke Inuzuka

- -
-
- - \ No newline at end of file diff --git "a/docs/\347\254\224\350\256\260\346\234\254/README.md" "b/docs/\347\254\224\350\256\260\346\234\254/README.md" deleted file mode 100644 index 3cb28b6..0000000 --- "a/docs/\347\254\224\350\256\260\346\234\254/README.md" +++ /dev/null @@ -1,567 +0,0 @@ -goldmark -========================================== - -[![https://pkg.go.dev/github.com/yuin/goldmark](https://pkg.go.dev/badge/github.com/yuin/goldmark.svg)](https://pkg.go.dev/github.com/yuin/goldmark) -[![https://github.com/yuin/goldmark/actions?query=workflow:test](https://github.com/yuin/goldmark/workflows/test/badge.svg?branch=master&event=push)](https://github.com/yuin/goldmark/actions?query=workflow:test) -[![https://coveralls.io/github/yuin/goldmark](https://coveralls.io/repos/github/yuin/goldmark/badge.svg?branch=master)](https://coveralls.io/github/yuin/goldmark) -[![https://goreportcard.com/report/github.com/yuin/goldmark](https://goreportcard.com/badge/github.com/yuin/goldmark)](https://goreportcard.com/report/github.com/yuin/goldmark) - -> A Markdown parser written in Go. Easy to extend, standards-compliant, well-structured. - -goldmark is compliant with CommonMark 0.31.2. - -- [goldmark playground](https://yuin.github.io/goldmark/playground/) : Try goldmark online. This playground is built with WASM(5-10MB). - -Motivation ----------------------- -I needed a Markdown parser for Go that satisfies the following requirements: - -- Easy to extend. - - Markdown is poor in document expressions compared to other light markup languages such as reStructuredText. - - We have extensions to the Markdown syntax, e.g. PHP Markdown Extra, GitHub Flavored Markdown. -- Standards-compliant. - - Markdown has many dialects. - - GitHub-Flavored Markdown is widely used and is based upon CommonMark, effectively mooting the question of whether or not CommonMark is an ideal specification. - - CommonMark is complicated and hard to implement. -- Well-structured. - - AST-based; preserves source position of nodes. -- Written in pure Go. - -[golang-commonmark](https://gitlab.com/golang-commonmark/markdown) may be a good choice, but it seems to be a copy of [markdown-it](https://github.com/markdown-it). - -[blackfriday.v2](https://github.com/russross/blackfriday/tree/v2) is a fast and widely-used implementation, but is not CommonMark-compliant and cannot be extended from outside of the package, since its AST uses structs instead of interfaces. - -Furthermore, its behavior differs from other implementations in some cases, especially regarding lists: [Deep nested lists don't output correctly #329](https://github.com/russross/blackfriday/issues/329), [List block cannot have a second line #244](https://github.com/russross/blackfriday/issues/244), etc. - -This behavior sometimes causes problems. If you migrate your Markdown text from GitHub to blackfriday-based wikis, many lists will immediately be broken. - -As mentioned above, CommonMark is complicated and hard to implement, so Markdown parsers based on CommonMark are few and far between. - -Features ----------------------- - -- **Standards-compliant.** goldmark is fully compliant with the latest [CommonMark](https://commonmark.org/) specification. -- **Extensible.** Do you want to add a `@username` mention syntax to Markdown? - You can easily do so in goldmark. You can add your AST nodes, - parsers for block-level elements, parsers for inline-level elements, - transformers for paragraphs, transformers for the whole AST structure, and - renderers. -- **Performance.** goldmark's performance is on par with that of cmark, - the CommonMark reference implementation written in C. -- **Robust.** goldmark is tested with `go test --fuzz`. -- **Built-in extensions.** goldmark ships with common extensions like tables, strikethrough, - task lists, and definition lists. -- **Depends only on standard libraries.** - -Installation ----------------------- -```bash -$ go get github.com/yuin/goldmark -``` - - -Usage ----------------------- -Import packages: - -```go -import ( - "bytes" - "github.com/yuin/goldmark" -) -``` - - -Convert Markdown documents with the CommonMark-compliant mode: - -```go -var buf bytes.Buffer -if err := goldmark.Convert(source, &buf); err != nil { - panic(err) -} -``` - -With options ------------------------------- - -```go -var buf bytes.Buffer -if err := goldmark.Convert(source, &buf, parser.WithContext(ctx)); err != nil { - panic(err) -} -``` - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `parser.WithContext` | A `parser.Context` | Context for the parsing phase. | - -Context options ----------------------- - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `parser.WithIDs` | A `parser.IDs` | `IDs` allows you to change logics that are related to element id(ex: Auto heading id generation). | - - -Custom parser and renderer --------------------------- -```go -import ( - "bytes" - "github.com/yuin/goldmark" - "github.com/yuin/goldmark/extension" - "github.com/yuin/goldmark/parser" - "github.com/yuin/goldmark/renderer/html" -) - -md := goldmark.New( - goldmark.WithExtensions(extension.GFM), - goldmark.WithParserOptions( - parser.WithAutoHeadingID(), - ), - goldmark.WithRendererOptions( - html.WithHardWraps(), - html.WithXHTML(), - ), - ) -var buf bytes.Buffer -if err := md.Convert(source, &buf); err != nil { - panic(err) -} -``` - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `goldmark.WithParser` | `parser.Parser` | This option must be passed before `goldmark.WithParserOptions` and `goldmark.WithExtensions` | -| `goldmark.WithRenderer` | `renderer.Renderer` | This option must be passed before `goldmark.WithRendererOptions` and `goldmark.WithExtensions` | -| `goldmark.WithParserOptions` | `...parser.Option` | | -| `goldmark.WithRendererOptions` | `...renderer.Option` | | -| `goldmark.WithExtensions` | `...goldmark.Extender` | | - -Parser and Renderer options ------------------------------- - -### Parser options - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `parser.WithBlockParsers` | A `util.PrioritizedSlice` whose elements are `parser.BlockParser` | Parsers for parsing block level elements. | -| `parser.WithInlineParsers` | A `util.PrioritizedSlice` whose elements are `parser.InlineParser` | Parsers for parsing inline level elements. | -| `parser.WithParagraphTransformers` | A `util.PrioritizedSlice` whose elements are `parser.ParagraphTransformer` | Transformers for transforming paragraph nodes. | -| `parser.WithASTTransformers` | A `util.PrioritizedSlice` whose elements are `parser.ASTTransformer` | Transformers for transforming an AST. | -| `parser.WithAutoHeadingID` | `-` | Enables auto heading ids. | -| `parser.WithAttribute` | `-` | Enables custom attributes. Currently only headings supports attributes. | - -### HTML Renderer options - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `html.WithWriter` | `html.Writer` | `html.Writer` for writing contents to an `io.Writer`. | -| `html.WithHardWraps` | `-` | Render newlines as `
`.| -| `html.WithXHTML` | `-` | Render as XHTML. | -| `html.WithUnsafe` | `-` | By default, goldmark does not render raw HTML or potentially dangerous links. With this option, goldmark renders such content as written. | - -### Built-in extensions - -- `extension.Table` - - [GitHub Flavored Markdown: Tables](https://github.github.com/gfm/#tables-extension-) -- `extension.Strikethrough` - - [GitHub Flavored Markdown: Strikethrough](https://github.github.com/gfm/#strikethrough-extension-) -- `extension.Linkify` - - [GitHub Flavored Markdown: Autolinks](https://github.github.com/gfm/#autolinks-extension-) -- `extension.TaskList` - - [GitHub Flavored Markdown: Task list items](https://github.github.com/gfm/#task-list-items-extension-) -- `extension.GFM` - - This extension enables Table, Strikethrough, Linkify and TaskList. - - This extension does not filter tags defined in [6.11: Disallowed Raw HTML (extension)](https://github.github.com/gfm/#disallowed-raw-html-extension-). - If you need to filter HTML tags, see [Security](#security). - - If you need to parse github emojis, you can use [goldmark-emoji](https://github.com/yuin/goldmark-emoji) extension. -- `extension.DefinitionList` - - [PHP Markdown Extra: Definition lists](https://michelf.ca/projects/php-markdown/extra/#def-list) -- `extension.Footnote` - - [PHP Markdown Extra: Footnotes](https://michelf.ca/projects/php-markdown/extra/#footnotes) -- `extension.Typographer` - - This extension substitutes punctuations with typographic entities like [smartypants](https://daringfireball.net/projects/smartypants/). -- `extension.CJK` - - This extension is a shortcut for CJK related functionalities. - -### Attributes -The `parser.WithAttribute` option allows you to define attributes on some elements. - -Currently only headings support attributes. - -**Attributes are being discussed in the -[CommonMark forum](https://talk.commonmark.org/t/consistent-attribute-syntax/272). -This syntax may possibly change in the future.** - - -#### Headings - -``` -## heading ## {#id .className attrName=attrValue class="class1 class2"} - -## heading {#id .className attrName=attrValue class="class1 class2"} -``` - -``` -heading {#id .className attrName=attrValue} -============ -``` - -### Table extension -The Table extension implements [Table(extension)](https://github.github.com/gfm/#tables-extension-), as -defined in [GitHub Flavored Markdown Spec](https://github.github.com/gfm/). - -Specs are defined for XHTML, so specs use some deprecated attributes for HTML5. - -You can override alignment rendering method via options. - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `extension.WithTableCellAlignMethod` | `extension.TableCellAlignMethod` | Option indicates how are table cells aligned. | - -### Typographer extension - -The Typographer extension translates plain ASCII punctuation characters into typographic-punctuation HTML entities. - -Default substitutions are: - -| Punctuation | Default entity | -| ------------ | ---------- | -| `'` | `‘`, `’` | -| `"` | `“`, `”` | -| `--` | `–` | -| `---` | `—` | -| `...` | `…` | -| `<<` | `«` | -| `>>` | `»` | - -You can override the default substitutions via `extensions.WithTypographicSubstitutions`: - -```go -markdown := goldmark.New( - goldmark.WithExtensions( - extension.NewTypographer( - extension.WithTypographicSubstitutions(extension.TypographicSubstitutions{ - extension.LeftSingleQuote: []byte("‚"), - extension.RightSingleQuote: nil, // nil disables a substitution - }), - ), - ), -) -``` - -### Linkify extension - -The Linkify extension implements [Autolinks(extension)](https://github.github.com/gfm/#autolinks-extension-), as -defined in [GitHub Flavored Markdown Spec](https://github.github.com/gfm/). - -Since the spec does not define details about URLs, there are numerous ambiguous cases. - -You can override autolinking patterns via options. - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `extension.WithLinkifyAllowedProtocols` | `[][]byte \| []string` | List of allowed protocols such as `[]string{ "http:" }` | -| `extension.WithLinkifyURLRegexp` | `*regexp.Regexp` | Regexp that defines URLs, including protocols | -| `extension.WithLinkifyWWWRegexp` | `*regexp.Regexp` | Regexp that defines URL starting with `www.`. This pattern corresponds to [the extended www autolink](https://github.github.com/gfm/#extended-www-autolink) | -| `extension.WithLinkifyEmailRegexp` | `*regexp.Regexp` | Regexp that defines email addresses` | - -Example, using [xurls](https://github.com/mvdan/xurls): - -```go -import "mvdan.cc/xurls/v2" - -markdown := goldmark.New( - goldmark.WithRendererOptions( - html.WithXHTML(), - html.WithUnsafe(), - ), - goldmark.WithExtensions( - extension.NewLinkify( - extension.WithLinkifyAllowedProtocols([]string{ - "http:", - "https:", - }), - extension.WithLinkifyURLRegexp( - xurls.Strict, - ), - ), - ), -) -``` - -### Footnotes extension - -The Footnote extension implements [PHP Markdown Extra: Footnotes](https://michelf.ca/projects/php-markdown/extra/#footnotes). - -This extension has some options: - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `extension.WithFootnoteIDPrefix` | `[]byte \| string` | a prefix for the id attributes.| -| `extension.WithFootnoteIDPrefixFunction` | `func(gast.Node) []byte` | a function that determines the id attribute for given Node.| -| `extension.WithFootnoteLinkTitle` | `[]byte \| string` | an optional title attribute for footnote links.| -| `extension.WithFootnoteBacklinkTitle` | `[]byte \| string` | an optional title attribute for footnote backlinks. | -| `extension.WithFootnoteLinkClass` | `[]byte \| string` | a class for footnote links. This defaults to `footnote-ref`. | -| `extension.WithFootnoteBacklinkClass` | `[]byte \| string` | a class for footnote backlinks. This defaults to `footnote-backref`. | -| `extension.WithFootnoteBacklinkHTML` | `[]byte \| string` | a class for footnote backlinks. This defaults to `↩︎`. | - -Some options can have special substitutions. Occurrences of “^^” in the string will be replaced by the corresponding footnote number in the HTML output. Occurrences of “%%” will be replaced by a number for the reference (footnotes can have multiple references). - -`extension.WithFootnoteIDPrefix` and `extension.WithFootnoteIDPrefixFunction` are useful if you have multiple Markdown documents displayed inside one HTML document to avoid footnote ids to clash each other. - -`extension.WithFootnoteIDPrefix` sets fixed id prefix, so you may write codes like the following: - -```go -for _, path := range files { - source := readAll(path) - prefix := getPrefix(path) - - markdown := goldmark.New( - goldmark.WithExtensions( - NewFootnote( - WithFootnoteIDPrefix(path), - ), - ), - ) - var b bytes.Buffer - err := markdown.Convert(source, &b) - if err != nil { - t.Error(err.Error()) - } -} -``` - -`extension.WithFootnoteIDPrefixFunction` determines an id prefix by calling given function, so you may write codes like the following: - -```go -markdown := goldmark.New( - goldmark.WithExtensions( - NewFootnote( - WithFootnoteIDPrefixFunction(func(n gast.Node) []byte { - v, ok := n.OwnerDocument().Meta()["footnote-prefix"] - if ok { - return util.StringToReadOnlyBytes(v.(string)) - } - return nil - }), - ), - ), -) - -for _, path := range files { - source := readAll(path) - var b bytes.Buffer - - doc := markdown.Parser().Parse(text.NewReader(source)) - doc.Meta()["footnote-prefix"] = getPrefix(path) - err := markdown.Renderer().Render(&b, source, doc) -} -``` - -You can use [goldmark-meta](https://github.com/yuin/goldmark-meta) to define a id prefix in the markdown document: - - -```markdown ---- -title: document title -slug: article1 -footnote-prefix: article1 ---- - -# My article - -``` - -### CJK extension -CommonMark gives compatibilities a high priority and original markdown was designed by westerners. So CommonMark lacks considerations for languages like CJK. - -This extension provides additional options for CJK users. - -| Functional option | Type | Description | -| ----------------- | ---- | ----------- | -| `extension.WithEastAsianLineBreaks` | `...extension.EastAsianLineBreaksStyle` | Soft line breaks are rendered as a newline. Some asian users will see it as an unnecessary space. With this option, soft line breaks between east asian wide characters will be ignored. This defaults to `EastAsianLineBreaksStyleSimple`. | -| `extension.WithEscapedSpace` | `-` | Without spaces around an emphasis started with east asian punctuations, it is not interpreted as an emphasis(as defined in CommonMark spec). With this option, you can avoid this inconvenient behavior by putting 'not rendered' spaces around an emphasis like `太郎は\ **「こんにちわ」**\ といった`. | - -#### Styles of Line Breaking - -| Style | Description | -| ----- | ----------- | -| `EastAsianLineBreaksStyleSimple` | Soft line breaks are ignored if both sides of the break are east asian wide character. This behavior is the same as [`east_asian_line_breaks`](https://pandoc.org/MANUAL.html#extension-east_asian_line_breaks) in Pandoc. | -| `EastAsianLineBreaksCSS3Draft` | This option implements CSS text level3 [Segment Break Transformation Rules](https://drafts.csswg.org/css-text-3/#line-break-transform) with [some enhancements](https://github.com/w3c/csswg-drafts/issues/5086). | - -#### Example of `EastAsianLineBreaksStyleSimple` - -Input Markdown: - -```md -私はプログラマーです。 -東京の会社に勤めています。 -GoでWebアプリケーションを開発しています。 -``` - -Output: - -```html -

私はプログラマーです。東京の会社に勤めています。\nGoでWebアプリケーションを開発しています。

-``` - -#### Example of `EastAsianLineBreaksCSS3Draft` - -Input Markdown: - -```md -私はプログラマーです。 -東京の会社に勤めています。 -GoでWebアプリケーションを開発しています。 -``` - -Output: - -```html -

私はプログラマーです。東京の会社に勤めています。GoでWebアプリケーションを開発しています。

-``` - -Security --------------------- -By default, goldmark does not render raw HTML or potentially-dangerous URLs. -If you need to gain more control over untrusted contents, it is recommended that you -use an HTML sanitizer such as [bluemonday](https://github.com/microcosm-cc/bluemonday). - -Benchmark --------------------- -You can run this benchmark in the `_benchmark` directory. - -### against other golang libraries - -blackfriday v2 seems to be the fastest, but as it is not CommonMark compliant, its performance cannot be directly compared to that of the CommonMark-compliant libraries. - -goldmark, meanwhile, builds a clean, extensible AST structure, achieves full compliance with -CommonMark, and consumes less memory, all while being reasonably fast. - -- MBP 2019 13″(i5, 16GB), Go1.17 - -``` -BenchmarkMarkdown/Blackfriday-v2-8 302 3743747 ns/op 3290445 B/op 20050 allocs/op -BenchmarkMarkdown/GoldMark-8 280 4200974 ns/op 2559738 B/op 13435 allocs/op -BenchmarkMarkdown/CommonMark-8 226 5283686 ns/op 2702490 B/op 20792 allocs/op -BenchmarkMarkdown/Lute-8 12 92652857 ns/op 10602649 B/op 40555 allocs/op -BenchmarkMarkdown/GoMarkdown-8 13 81380167 ns/op 2245002 B/op 22889 allocs/op -``` - -### against cmark (CommonMark reference implementation written in C) - -- MBP 2019 13″(i5, 16GB), Go1.17 - -``` ------------ cmark ----------- -file: _data.md -iteration: 50 -average: 0.0044073057 sec -------- goldmark ------- -file: _data.md -iteration: 50 -average: 0.0041611990 sec -``` - -As you can see, goldmark's performance is on par with cmark's. - -Extensions --------------------- -### List of extensions - -- [goldmark-meta](https://github.com/yuin/goldmark-meta): A YAML metadata - extension for the goldmark Markdown parser. -- [goldmark-highlighting](https://github.com/yuin/goldmark-highlighting): A syntax-highlighting extension - for the goldmark markdown parser. -- [goldmark-emoji](https://github.com/yuin/goldmark-emoji): An emoji - extension for the goldmark Markdown parser. -- [goldmark-mathjax](https://github.com/litao91/goldmark-mathjax): Mathjax support for the goldmark markdown parser -- [goldmark-pdf](https://github.com/stephenafamo/goldmark-pdf): A PDF renderer that can be passed to `goldmark.WithRenderer()`. -- [goldmark-hashtag](https://github.com/abhinav/goldmark-hashtag): Adds support for `#hashtag`-based tagging to goldmark. -- [goldmark-wikilink](https://github.com/abhinav/goldmark-wikilink): Adds support for `[[wiki]]`-style links to goldmark. -- [goldmark-anchor](https://github.com/abhinav/goldmark-anchor): Adds anchors (permalinks) next to all headers in a document. -- [goldmark-figure](https://github.com/mangoumbrella/goldmark-figure): Adds support for rendering paragraphs starting with an image to `
` elements. -- [goldmark-frontmatter](https://github.com/abhinav/goldmark-frontmatter): Adds support for YAML, TOML, and custom front matter to documents. -- [goldmark-toc](https://github.com/abhinav/goldmark-toc): Adds support for generating tables-of-contents for goldmark documents. -- [goldmark-mermaid](https://github.com/abhinav/goldmark-mermaid): Adds support for rendering [Mermaid](https://mermaid-js.github.io/mermaid/) diagrams in goldmark documents. -- [goldmark-pikchr](https://github.com/jchenry/goldmark-pikchr): Adds support for rendering [Pikchr](https://pikchr.org/home/doc/trunk/homepage.md) diagrams in goldmark documents. -- [goldmark-embed](https://github.com/13rac1/goldmark-embed): Adds support for rendering embeds from YouTube links. -- [goldmark-latex](https://github.com/soypat/goldmark-latex): A $\LaTeX$ renderer that can be passed to `goldmark.WithRenderer()`. -- [goldmark-fences](https://github.com/stefanfritsch/goldmark-fences): Support for pandoc-style [fenced divs](https://pandoc.org/MANUAL.html#divs-and-spans) in goldmark. -- [goldmark-d2](https://github.com/FurqanSoftware/goldmark-d2): Adds support for [D2](https://d2lang.com/) diagrams. -- [goldmark-katex](https://github.com/FurqanSoftware/goldmark-katex): Adds support for [KaTeX](https://katex.org/) math and equations. -- [goldmark-img64](https://github.com/tenkoh/goldmark-img64): Adds support for embedding images into the document as DataURL (base64 encoded). -- [goldmark-enclave](https://github.com/quail-ink/goldmark-enclave): Adds support for embedding youtube/bilibili video, X's [oembed tweet](https://publish.twitter.com/), [tradingview](https://www.tradingview.com/widget/)'s chart, [quail](https://quail.ink)'s widget into the document. -- [goldmark-wiki-table](https://github.com/movsb/goldmark-wiki-table): Adds support for embedding Wiki Tables. - -### Loading extensions at runtime -[goldmark-dynamic](https://github.com/yuin/goldmark-dynamic) allows you to write a goldmark extension in Lua and load it at runtime without re-compilation. - -Please refer to [goldmark-dynamic](https://github.com/yuin/goldmark-dynamic) for details. - - -goldmark internal(for extension developers) ----------------------------------------------- -### Overview -goldmark's Markdown processing is outlined in the diagram below. - -``` - - | - V - +-------- parser.Parser --------------------------- - | 1. Parse block elements into AST - | 1. If a parsed block is a paragraph, apply - | ast.ParagraphTransformer - | 2. Traverse AST and parse blocks. - | 1. Process delimiters(emphasis) at the end of - | block parsing - | 3. Apply parser.ASTTransformers to AST - | - V - - | - V - +------- renderer.Renderer ------------------------ - | 1. Traverse AST and apply renderer.NodeRenderer - | corespond to the node type - - | - V - -``` - -### Parsing -Markdown documents are read through `text.Reader` interface. - -AST nodes do not have concrete text. AST nodes have segment information of the documents, represented by `text.Segment` . - -`text.Segment` has 3 attributes: `Start`, `End`, `Padding` . - -(TBC) - -**TODO** - -See `extension` directory for examples of extensions. - -Summary: - -1. Define AST Node as a struct in which `ast.BaseBlock` or `ast.BaseInline` is embedded. -2. Write a parser that implements `parser.BlockParser` or `parser.InlineParser`. -3. Write a renderer that implements `renderer.NodeRenderer`. -4. Define your goldmark extension that implements `goldmark.Extender`. - - -Donation --------------------- -BTC: 1NEDSyUmo4SMTDP83JJQSWi1MvQUGGNMZB - -License --------------------- -MIT - -Author --------------------- -Yusuke Inuzuka diff --git "a/docs/HISTORY/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.html" "b/docs/\347\254\224\350\256\260\346\234\254/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.html" similarity index 95% rename from "docs/HISTORY/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.html" rename to "docs/\347\254\224\350\256\260\346\234\254/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.html" index ce990bb..77264b0 100644 --- "a/docs/HISTORY/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.html" +++ "b/docs/\347\254\224\350\256\260\346\234\254/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.html" @@ -4,7 +4,7 @@ - HISTORY/仓库源等国内代理地址 + 笔记本/仓库源等国内代理地址 @@ -17,7 +17,7 @@ diff --git "a/docs/HISTORY/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.md" "b/docs/\347\254\224\350\256\260\346\234\254/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.md" similarity index 100% rename from "docs/HISTORY/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.md" rename to "docs/\347\254\224\350\256\260\346\234\254/\344\273\223\345\272\223\346\272\220\347\255\211\345\233\275\345\206\205\344\273\243\347\220\206\345\234\260\345\235\200.md" diff --git "a/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250Linux\345\221\275\344\273\244.html" "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250Linux\345\221\275\344\273\244.html" new file mode 100644 index 0000000..21f565e --- /dev/null +++ "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250Linux\345\221\275\344\273\244.html" @@ -0,0 +1,67 @@ + + + + + + + 笔记本/常用Linux命令 + + + + +
+ +
+

常用Linux命令

+

防火墙相关

+
1开启防火墙:
+2systemctl start firewalld
+3
+4关闭防火墙:
+5systemctl stop firewalld
+6
+7查看防火墙状态:
+8systemctl status firewalld 
+9firewall-cmd --state
+

开放/关闭端口

+
 1添加端口
+ 2firewall-cmd --zone=public --add-port=9092/tcp --permanent && firewall-cmd --reload
+ 3
+ 4删除端口
+ 5firewall-cmd --zone=public --remove-port=5905/tcp --permanent 
+ 6
+ 7端口配置生效
+ 8firewall-cmd --reload
+ 9
+10查看开放端口
+11firewall-cmd --zone=public --list-ports
+

开放/关闭端口

+
1查看监听的端口
+2netstat -lnpt
+3
+4查看进程网络连接
+5lsof -p 23501
+6
+7查看网络:nmcli d
+8启用网络:nmtui 
+

文件系统

+
1查看文件、文件夹大小
+2du -sh *
+3
+4磁盘信息
+5df -hl 
+
+
+
+ + \ No newline at end of file diff --git "a/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250Linux\345\221\275\344\273\244.md" "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250Linux\345\221\275\344\273\244.md" new file mode 100644 index 0000000..ed4bcdd --- /dev/null +++ "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250Linux\345\221\275\344\273\244.md" @@ -0,0 +1,48 @@ +# 常用Linux命令 + +## 防火墙相关 +```shell +开启防火墙: +systemctl start firewalld + +关闭防火墙: +systemctl stop firewalld + +查看防火墙状态: +systemctl status firewalld +firewall-cmd --state +``` + +## 开放/关闭端口 +```shell +添加端口 +firewall-cmd --zone=public --add-port=9092/tcp --permanent && firewall-cmd --reload + +删除端口 +firewall-cmd --zone=public --remove-port=5905/tcp --permanent + +端口配置生效 +firewall-cmd --reload + +查看开放端口 +firewall-cmd --zone=public --list-ports +``` +## 开放/关闭端口 +```shell +查看监听的端口 +netstat -lnpt + +查看进程网络连接 +lsof -p 23501 + +查看网络:nmcli d +启用网络:nmtui +``` +## 文件系统 +```shell +查看文件、文件夹大小 +du -sh * + +磁盘信息 +df -hl +``` \ No newline at end of file diff --git a/docs/HISTORY/mssql.html "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250mssql\350\257\255\345\217\245 copy.html" similarity index 99% rename from docs/HISTORY/mssql.html rename to "docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250mssql\350\257\255\345\217\245 copy.html" index b4d800e..527394a 100644 --- a/docs/HISTORY/mssql.html +++ "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250mssql\350\257\255\345\217\245 copy.html" @@ -4,7 +4,7 @@ - HISTORY/mssql + 笔记本/常用mssql语句 copy @@ -17,7 +17,7 @@ diff --git a/docs/HISTORY/mssql.md "b/docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250mssql\350\257\255\345\217\245 copy.md" similarity index 100% rename from docs/HISTORY/mssql.md rename to "docs/\347\254\224\350\256\260\346\234\254/\345\270\270\347\224\250mssql\350\257\255\345\217\245 copy.md" diff --git "a/docs_list/GO\345\274\200\345\217\221.html" "b/docs_list/GO\345\274\200\345\217\221.html" index 9f669ab..14b8242 100644 --- "a/docs_list/GO\345\274\200\345\217\221.html" +++ "b/docs_list/GO\345\274\200\345\217\221.html" @@ -17,7 +17,7 @@ diff --git a/docs_list/HISTORY.html b/docs_list/HISTORY.html index e01e612..a58c71e 100644 --- a/docs_list/HISTORY.html +++ b/docs_list/HISTORY.html @@ -17,38 +17,14 @@
- Js -
暂时没有描述
-
-
- README -
暂时没有描述
-
-
- h5 -
暂时没有描述
-
-
- mssql -
暂时没有描述
-
-
暂时没有描述
-
diff --git a/docs_list/SandDocs.html b/docs_list/SandDocs.html index a0e930b..8c61050 100644 --- a/docs_list/SandDocs.html +++ b/docs_list/SandDocs.html @@ -17,7 +17,7 @@
diff --git "a/docs_list/\344\270\200\344\272\233\345\260\217\350\257\227.html" "b/docs_list/\344\270\200\344\272\233\345\260\217\350\257\227.html" index 12e7151..e5b321a 100644 --- "a/docs_list/\344\270\200\344\272\233\345\260\217\350\257\227.html" +++ "b/docs_list/\344\270\200\344\272\233\345\260\217\350\257\227.html" @@ -17,7 +17,7 @@
diff --git "a/docs_list/\345\205\263\344\272\216JERRY.html" "b/docs_list/\345\205\263\344\272\216JERRY.html" index b77151c..c2fea29 100644 --- "a/docs_list/\345\205\263\344\272\216JERRY.html" +++ "b/docs_list/\345\205\263\344\272\216JERRY.html" @@ -17,12 +17,16 @@
- +
+
暂时没有描述
+
diff --git "a/docs_list/\347\254\224\350\256\260\346\234\254.html" "b/docs_list/\347\254\224\350\256\260\346\234\254.html" index 957d9d3..bf6d978 100644 --- "a/docs_list/\347\254\224\350\256\260\346\234\254.html" +++ "b/docs_list/\347\254\224\350\256\260\346\234\254.html" @@ -17,14 +17,22 @@
暂时没有描述
+
+
暂时没有描述
+
+
暂时没有描述
diff --git a/index.html b/index.html index a061a6b..470f078 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@