Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Commit 30b8574

Browse files
authored
Merge pull request #1 from 0xGG/feat/initial-commit
feat: Initial commit
2 parents 6517ea4 + 43025eb commit 30b8574

File tree

122 files changed

+24853
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+24853
-1
lines changed

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": [
3+
"@babel/preset-env",
4+
"@babel/preset-typescript",
5+
"@babel/preset-react"
6+
],
7+
"plugins": ["@babel/plugin-transform-runtime"]
8+
}

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,9 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
106+
107+
# Crossnote
108+
out
109+
*.vsix
110+
*.zip

.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// A launch configuration that compiles the extension and then opens it inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [{
8+
"name": "Run Extension",
9+
"type": "extensionHost",
10+
"request": "launch",
11+
"runtimeExecutable": "${execPath}",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
],
15+
"outFiles": [
16+
"${workspaceFolder}/out/**/*.js"
17+
],
18+
"preLaunchTask": "npm: watch"
19+
}
20+
]
21+
}

.vscode/tasks.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// for the documentation about the tasks.json format
3+
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"problemMatcher": "$tsc-watch",
10+
"isBackground": true,
11+
"presentation": {
12+
"reveal": "never"
13+
},
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}
19+
]
20+
}

.vscodeignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.vscode/**
2+
.vscode-test/**
3+
out/test/**
4+
test/**
5+
src/**
6+
**/*.map
7+
.gitignore
8+
tsconfig.json
9+
vsc-extension-quickstart.md
10+
styles/src/**
11+
webpack.config.js
12+
**/*.ts
13+
**/*.tsx
14+
*.vsix
15+
16+
# Manually include the node modules that we used
17+
node_modules
18+
!node_modules/tslib
19+
!node_modules/yamljs
20+
!node_modules/crypto-js
21+
!node_modules/crypto-random-string
22+
!node_modules/mkdirp

.yarnclean

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# test directories
2+
__tests__
3+
test
4+
tests
5+
powered-test
6+
7+
# asset directories
8+
docs
9+
doc
10+
website
11+
images
12+
assets
13+
14+
# examples
15+
example
16+
examples
17+
18+
# code coverage directories
19+
coverage
20+
.nyc_output
21+
22+
# build scripts
23+
Makefile
24+
Gulpfile.js
25+
Gruntfile.js
26+
27+
# configs
28+
appveyor.yml
29+
circle.yml
30+
codeship-services.yml
31+
codeship-steps.yml
32+
wercker.yml
33+
.tern-project
34+
.gitattributes
35+
.editorconfig
36+
.*ignore
37+
.eslintrc
38+
.jshintrc
39+
.flowconfig
40+
.documentup.json
41+
.yarn-metadata.json
42+
.travis.yml
43+
44+
# misc
45+
*.md

DEVELOPMENT.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Development
2+
3+
Clone this project, open it in VSCode.
4+
5+
```bash
6+
$ yarn # install all dependencies
7+
$ yarn watch # watch mode
8+
$ yarn package # production build
9+
```
10+
11+
Check the `package.json` file.

README.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
1+
---
2+
note:
3+
createdAt: 2020-04-12T12:45:54.675Z
4+
modifiedAt: 2020-04-12T13:01:03.840Z
5+
tags: []
6+
---
7+
![](./media/logo128.png)
8+
19
# vscode-crossnote
2-
(WIP) Authentic markdown note taking app on VSCode with WYSIWYG editor
10+
(WIP) Turn your VSCode into a decent markdown note taking platform :grinning:
11+
12+
[![](https://img.shields.io/github/tag/0xGG/vscode-crossnote.svg)](https://github.com/0xGG/vscode-crossnote/releases) [![](https://img.shields.io/visual-studio-marketplace/azure-devops/installs/total/shd101wyy.crossnote)](https://marketplace.visualstudio.com/items?itemName=shd101wyy.crossnote) [![](https://img.shields.io/github/stars/0xGG/vscode-crossnote.svg?style=social&label=Star)](https://github.com/0xGG/vscode-crossnote)
13+
14+
[![](https://img.shields.io/badge/Supported%20by-VSCode%20Power%20User%20Course%20%E2%86%92-gray.svg?colorA=655BE1&colorB=4F44D6&style=for-the-badge)](https://a.paddle.com/v2/click/16413/111518?link=1227)
15+
16+
**This project is still in its very early stage of development. There are lots of bugs and missing features :frog:**
17+
18+
![](https://i.loli.net/2020/04/12/lTMIFCuUcyeSGjV.gif)
19+
The goal of this project is to be consistent with the web version [crossnote.app](https://crossnote.app) | [GitHub 0xGG/crossnote](https://github.com/0xGG/crossnote).
20+
You can read the introduction notebook of the crossnote project directly on [crossnote](https://crossnote.app/?repo=https%3A%2F%2Fgithub.com%2F0xGG%2Fwelcome-notebook&branch=master&filePath=README.md) website or on [GitHub 0xGG/welcome-notebook](https://github.com/0xGG/welcome-notebook).
21+
Right now many key pieces are missing, such as:
22+
23+
* [ ] Dark theme and ability to customize CSS
24+
* [ ] Crossnote cloud platform integration
25+
* [ ] Cloud widgets support
26+
* [ ] Notification system
27+
* [ ] User settings synchronization
28+
* [ ] etc..
29+
30+
## Thanks
31+
- The WYSIWYG editor [0xGG/VickyMD](https://github.com/0xGG/VickyMD) was built on top of [laobubu/HyperMD](https://github.com/laobubu/HyperMD/).
32+
- Icons made by [srip](https://www.flaticon.com/authors/srip) from [www.flaticon.com](https://www.flaticon.com/).
33+
- And many more that support this project! :grin:
34+
35+
36+
## License
37+
38+
AGPL3

media/editNote.svg

Lines changed: 18 additions & 0 deletions
Loading

media/logo-dark.svg

Lines changed: 9 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)