Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding more changes, examples with each executable spring boot project #3

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .crossnote/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
({
katexConfig: {
"macros": {}
},

mathjaxConfig: {
"tex": {},
"options": {},
"loader": {}
},

mermaidConfig: {
"startOnLoad": false
},
})
6 changes: 6 additions & 0 deletions .crossnote/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!-- The content below will be included at the end of the <head> element. -->
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
// your code here
});
</script>
12 changes: 12 additions & 0 deletions .crossnote/parser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
({
// Please visit the URL below for more information:
// https://shd101wyy.github.io/markdown-preview-enhanced/#/extend-parser

onWillParseMarkdown: async function(markdown) {
return markdown;
},

onDidParseMarkdown: async function(html) {
return html;
},
})
8 changes: 8 additions & 0 deletions .crossnote/style.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

/* Please visit the URL below for more information: */
/* https://shd101wyy.github.io/markdown-preview-enhanced/#/customize-css */

.markdown-preview.markdown-preview {
// modify your style here
// eg: background-color: blue;
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"java.compile.nullAnalysis.mode": "automatic",
"java.debug.settings.onBuildFailureProceed": true,
"java.project.sourcePaths": [
"beanexample/src/main/java/com/example/beanexample",
"8.project/demo/src/main/java/com/example/demo",
"7.qna",
"demo"
],
"java.configuration.updateBuildConfiguration": "interactive"
}
Loading