-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tidy-up): remove double spaces and save Markdown file
- Loading branch information
1 parent
7dfc21e
commit 212014a
Showing
8 changed files
with
158 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
- child 2 | ||
- child 3 | ||
- Here we have #[[some tag with spaces]] | ||
- top level 2 | ||
- [[some page title with spaces]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- Regular text with spaces | ||
- child | ||
- nested [Link With Spaces ](https://example.com) | ||
- top level | ||
- child 2 | ||
- child 3 | ||
- Here we have #[[some tag with spaces]] | ||
- top level 2 | ||
- [[some page title with spaces]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
module github.com/andreoliwa/logseq-doctor | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/andreoliwa/logseq-go v0.0.0-20241226195503-ec30920a9c1c | ||
github.com/andreoliwa/logseq-go v0.0.0-20241228161444-32088a5a9491 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/stretchr/testify v1.10.0 | ||
) | ||
|
||
require ( | ||
github.com/RoaringBitmap/roaring v0.9.4 // indirect | ||
github.com/axiomhq/hyperloglog v0.0.0-20191112132149-a4c4c47bc57f // indirect | ||
github.com/bits-and-blooms/bitset v1.2.0 // indirect | ||
github.com/RoaringBitmap/roaring v1.9.4 // indirect | ||
github.com/axiomhq/hyperloglog v0.2.2 // indirect | ||
github.com/bits-and-blooms/bitset v1.20.0 // indirect | ||
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect | ||
github.com/blevesearch/mmap-go v1.0.4 // indirect | ||
github.com/blevesearch/segment v0.9.0 // indirect | ||
github.com/blevesearch/segment v0.9.1 // indirect | ||
github.com/blevesearch/snowballstem v0.9.0 // indirect | ||
github.com/blevesearch/vellum v1.0.7 // indirect | ||
github.com/blevesearch/vellum v1.1.0 // indirect | ||
github.com/blugelabs/bluge v0.2.2 // indirect | ||
github.com/blugelabs/bluge_segment_api v0.2.0 // indirect | ||
github.com/blugelabs/ice v1.0.0 // indirect | ||
github.com/blugelabs/ice/v2 v2.0.1 // indirect | ||
github.com/caio/go-tdigest v3.1.0+incompatible // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-metro v0.0.0-20180109044635-280f6062b5bc // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/dgryski/go-metro v0.0.0-20211217172704-adc40b04c140 // indirect | ||
github.com/fsnotify/fsnotify v1.8.0 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/klauspost/compress v1.15.2 // indirect | ||
github.com/kamstrup/intmap v0.5.1 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mschoch/smat v0.2.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/yuin/goldmark v1.6.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
github.com/yuin/goldmark v1.7.8 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect | ||
) |
Oops, something went wrong.