This commit is contained in:
5
ayanova/package-lock.json
generated
5
ayanova/package-lock.json
generated
@@ -11772,6 +11772,11 @@
|
|||||||
"assert-plus": "^1.0.0"
|
"assert-plus": "^1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"github-markdown-css": {
|
||||||
|
"version": "4.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/github-markdown-css/-/github-markdown-css-4.0.0.tgz",
|
||||||
|
"integrity": "sha512-mH0bcIKv4XAN0mQVokfTdKo2OD5K8WJE9+lbMdM32/q0Ie5tXgVN/2o+zvToRMxSTUuiTRcLg5hzkFfOyBYreg=="
|
||||||
|
},
|
||||||
"glob": {
|
"glob": {
|
||||||
"version": "7.1.3",
|
"version": "7.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.6.4",
|
"core-js": "^3.6.4",
|
||||||
"dompurify": "^2.0.8",
|
"dompurify": "^2.0.8",
|
||||||
|
"github-markdown-css": "^4.0.0",
|
||||||
"jwt-decode": "^2.2.0",
|
"jwt-decode": "^2.2.0",
|
||||||
"luxon": "^1.22.2",
|
"luxon": "^1.22.2",
|
||||||
"marked": "^0.8.2",
|
"marked": "^0.8.2",
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
white-space: pre-line;
|
white-space: pre-line;
|
||||||
}
|
}
|
||||||
|
|
||||||
.aywiki > blockquote {
|
/* .aywiki > blockquote {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
margin-left: 50px;
|
margin-left: 50px;
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
border-left: 3px solid #ccc;
|
border-left: 3px solid #ccc;
|
||||||
background-color: rgb(245, 252, 255);
|
background-color: rgb(245, 252, 255);
|
||||||
}
|
} */
|
||||||
|
|||||||
@@ -316,7 +316,7 @@
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
:style="wikiStyle()"
|
:style="wikiStyle()"
|
||||||
class="aywiki"
|
class="markdown-body"
|
||||||
v-html="compiledOutput()"
|
v-html="compiledOutput()"
|
||||||
></div>
|
></div>
|
||||||
</v-col>
|
</v-col>
|
||||||
@@ -813,11 +813,6 @@ export default {
|
|||||||
/**
|
/**
|
||||||
|
|
||||||
|
|
||||||
Clean up the example markdown, go through and use mine and sprinkle in the marked sample stuff where it differs
|
|
||||||
- Make sure images ONLY come from our own server, not any other
|
|
||||||
- Maybe make a key image and put on our server for wiki example so we can if we feel like it track usage of demo data
|
|
||||||
- Put a block of emojis in it with a link to the help docs regarding emojis for extra coolness
|
|
||||||
|
|
||||||
todo: STYLE / OUTPUT CSS IMPROVEMENTS
|
todo: STYLE / OUTPUT CSS IMPROVEMENTS
|
||||||
- Check with MARKED to see what css they use or require or something, maybe I'm missing something they have on their site before I roll my own
|
- Check with MARKED to see what css they use or require or something, maybe I'm missing something they have on their site before I roll my own
|
||||||
- the TOAST one is pretty cool looking
|
- the TOAST one is pretty cool looking
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import "@fortawesome/fontawesome-free/css/all.css";
|
import "@fortawesome/fontawesome-free/css/all.css";
|
||||||
import "typeface-roboto/index.css";
|
import "typeface-roboto/index.css";
|
||||||
|
import "github-markdown-css";
|
||||||
import Vue from "vue";
|
import Vue from "vue";
|
||||||
import Vuetify from "./plugins/vuetify";
|
import Vuetify from "./plugins/vuetify";
|
||||||
import App from "./App.vue";
|
import App from "./App.vue";
|
||||||
|
|||||||
Reference in New Issue
Block a user