Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
30ae4140
Commit
30ae4140
authored
Jan 31, 2024
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update gomark source
parent
279cba0e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
19 deletions
+19
-19
rss.go
api/rss/rss.go
+3
-3
markdown_service_test.go
api/v2/markdown_service_test.go
+1
-1
memo_service.go
api/v2/memo_service.go
+4
-4
node.go
api/v2/node.go
+1
-1
tag_service.go
api/v2/tag_service.go
+4
-4
go.mod
go.mod
+1
-1
go.sum
go.sum
+2
-2
frontend.go
server/frontend/frontend.go
+3
-3
No files found.
api/rss/rss.go
View file @
30ae4140
...
...
@@ -9,9 +9,9 @@ import (
"github.com/gorilla/feeds"
"github.com/labstack/echo/v4"
"github.com/
usememos
/gomark"
"github.com/
usememos
/gomark/ast"
"github.com/
usememos
/gomark/renderer"
"github.com/
yourselfhosted
/gomark"
"github.com/
yourselfhosted
/gomark/ast"
"github.com/
yourselfhosted
/gomark/renderer"
"github.com/usememos/memos/internal/util"
"github.com/usememos/memos/server/profile"
...
...
api/v2/markdown_service_test.go
View file @
30ae4140
...
...
@@ -4,7 +4,7 @@ import (
"testing"
"github.com/stretchr/testify/require"
"github.com/
usememos
/gomark/ast"
"github.com/
yourselfhosted
/gomark/ast"
apiv2pb
"github.com/usememos/memos/proto/gen/api/v2"
)
...
...
api/v2/memo_service.go
View file @
30ae4140
...
...
@@ -11,10 +11,10 @@ import (
"github.com/google/cel-go/cel"
"github.com/lithammer/shortuuid/v4"
"github.com/pkg/errors"
"github.com/
usememos
/gomark/ast"
"github.com/
usememos
/gomark/parser"
"github.com/
usememos
/gomark/parser/tokenizer"
"github.com/
usememos
/gomark/restore"
"github.com/
yourselfhosted
/gomark/ast"
"github.com/
yourselfhosted
/gomark/parser"
"github.com/
yourselfhosted
/gomark/parser/tokenizer"
"github.com/
yourselfhosted
/gomark/restore"
"go.uber.org/zap"
expr
"google.golang.org/genproto/googleapis/api/expr/v1alpha1"
"google.golang.org/grpc/codes"
...
...
api/v2/node.go
View file @
30ae4140
package
v2
import
(
"github.com/
usememos
/gomark/ast"
"github.com/
yourselfhosted
/gomark/ast"
apiv2pb
"github.com/usememos/memos/proto/gen/api/v2"
)
...
...
api/v2/tag_service.go
View file @
30ae4140
...
...
@@ -7,10 +7,10 @@ import (
"sort"
"github.com/pkg/errors"
"github.com/
usememos
/gomark/ast"
"github.com/
usememos
/gomark/parser"
"github.com/
usememos
/gomark/parser/tokenizer"
"github.com/
usememos
/gomark/restore"
"github.com/
yourselfhosted
/gomark/ast"
"github.com/
yourselfhosted
/gomark/parser"
"github.com/
yourselfhosted
/gomark/parser/tokenizer"
"github.com/
yourselfhosted
/gomark/restore"
"golang.org/x/exp/slices"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
...
...
go.mod
View file @
30ae4140
...
...
@@ -25,7 +25,7 @@ require (
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.8.4
github.com/swaggo/swag v1.16.2
github.com/
usememos/gomark v0.1.1
github.com/
yourselfhosted/gomark v0.0.0-20240131105606-5333db6f5616
go.uber.org/zap v1.26.0
golang.org/x/crypto v0.18.0
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a
...
...
go.sum
View file @
30ae4140
...
...
@@ -459,13 +459,13 @@ github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLY
github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=
github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
github.com/urfave/cli v1.22.5/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
github.com/usememos/gomark v0.1.1 h1:e5AYuZCdPhcqI0gEG89zqw3r3sc/+O6nH2GvJpRI0/w=
github.com/usememos/gomark v0.1.1/go.mod h1:7CZRoYFQyyljzplOTeyODFR26O+wr0BbnpTWVLGfKJA=
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQD0Loo=
github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
github.com/yourselfhosted/gomark v0.0.0-20240131105606-5333db6f5616 h1:0CGKgsvZTYP54XexlxytlNesG0wNITs65B6yB1WfEy8=
github.com/yourselfhosted/gomark v0.0.0-20240131105606-5333db6f5616/go.mod h1:3CnrFK/H9I9D3ZHgjHQNcsh848Fv/FJUoC2vDMLYtt4=
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg=
...
...
server/frontend/frontend.go
View file @
30ae4140
...
...
@@ -9,9 +9,9 @@ import (
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/
usememos
/gomark/parser"
"github.com/
usememos
/gomark/parser/tokenizer"
"github.com/
usememos
/gomark/renderer"
"github.com/
yourselfhosted
/gomark/parser"
"github.com/
yourselfhosted
/gomark/parser/tokenizer"
"github.com/
yourselfhosted
/gomark/renderer"
apiv1
"github.com/usememos/memos/api/v1"
"github.com/usememos/memos/internal/util"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment