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
d8f7a4e7
Commit
d8f7a4e7
authored
Oct 21, 2025
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: tweak demo data
parent
81e852e3
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
go.mod
go.mod
+1
-1
go.sum
go.sum
+2
-2
01__dump.sql
store/seed/sqlite/01__dump.sql
+1
-3
Link.tsx
web/src/components/MemoContent/Link.tsx
+1
-0
No files found.
go.mod
View file @
d8f7a4e7
...
...
@@ -23,7 +23,7 @@ require (
github.com/spf13/cobra v1.10.1
github.com/spf13/viper v1.20.1
github.com/stretchr/testify v1.10.0
github.com/usememos/gomark v0.0.0-2025102115
0841-d1583ab910bf
github.com/usememos/gomark v0.0.0-2025102115
3759-00d1ea6c86f0
golang.org/x/crypto v0.42.0
golang.org/x/mod v0.28.0
golang.org/x/net v0.43.0
...
...
go.sum
View file @
d8f7a4e7
...
...
@@ -433,8 +433,8 @@ github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVM
github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=
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/usememos/gomark v0.0.0-2025102115
0841-d1583ab910bf h1:KVO1UvTgi4UCjvNdyvFvCx1N4Ui5I1J7kIRrBTVGv7E
=
github.com/usememos/gomark v0.0.0-2025102115
0841-d1583ab910bf
/go.mod h1:7CZRoYFQyyljzplOTeyODFR26O+wr0BbnpTWVLGfKJA=
github.com/usememos/gomark v0.0.0-2025102115
3759-00d1ea6c86f0 h1:hN+LjlPdqd/6OLYWs5mYYwJ6WUQBKBUreCt1Kg8u5jk
=
github.com/usememos/gomark v0.0.0-2025102115
3759-00d1ea6c86f0
/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=
...
...
store/seed/sqlite/01__dump.sql
View file @
d8f7a4e7
This diff is collapsed.
Click to expand it.
web/src/components/MemoContent/Link.tsx
View file @
d8f7a4e7
...
...
@@ -53,6 +53,7 @@ const Link: React.FC<Props> = ({ content, url }: Props) => {
rel=
"noopener noreferrer"
onMouseEnter=
{
handleMouseEnter
}
onMouseLeave=
{
()
=>
setShowTooltip
(
false
)
}
onClick=
{
(
e
)
=>
e
.
stopPropagation
()
}
>
{
content
?
content
.
map
((
child
,
index
)
=>
<
Renderer
key=
{
`${child.type}-${index}`
}
index=
{
String
(
index
)
}
node=
{
child
}
/>)
:
url
}
</
a
>
...
...
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