File tree Expand file tree Collapse file tree 4 files changed +32
-6
lines changed Expand file tree Collapse file tree 4 files changed +32
-6
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,15 @@ declare module 'vue' {
17
17
BNavbarNav : typeof import ( 'bootstrap-vue-next/components/BNavbar' ) [ 'BNavbarNav' ]
18
18
BNavbarToggle : typeof import ( 'bootstrap-vue-next/components/BNavbar' ) [ 'BNavbarToggle' ]
19
19
BNavItem : typeof import ( 'bootstrap-vue-next/components/BNav' ) [ 'BNavItem' ]
20
+ BSpinner : typeof import ( 'bootstrap-vue-next/components/BSpinner' ) [ 'BSpinner' ]
20
21
FooterBar : typeof import ( './src/components/navigation/FooterBar.vue' ) [ 'default' ]
21
22
HelloWorld : typeof import ( './src/components/HelloWorld.vue' ) [ 'default' ]
22
23
IconCommunity : typeof import ( './src/components/icons/IconCommunity.vue' ) [ 'default' ]
23
24
IconDocumentation : typeof import ( './src/components/icons/IconDocumentation.vue' ) [ 'default' ]
24
25
IconEcosystem : typeof import ( './src/components/icons/IconEcosystem.vue' ) [ 'default' ]
25
26
IconSupport : typeof import ( './src/components/icons/IconSupport.vue' ) [ 'default' ]
26
27
IconTooling : typeof import ( './src/components/icons/IconTooling.vue' ) [ 'default' ]
28
+ MarkdownRenderer : typeof import ( './src/components/common/MarkdownRenderer.vue' ) [ 'default' ]
27
29
NavigationBar : typeof import ( './src/components/navigation/NavigationBar.vue' ) [ 'default' ]
28
30
RouterLink : typeof import ( 'vue-router' ) [ 'RouterLink' ]
29
31
RouterView : typeof import ( 'vue-router' ) [ 'RouterView' ]
Original file line number Diff line number Diff line change 18
18
"airtable" : " ^0.12.2" ,
19
19
"bootstrap" : " ^5.3.3" ,
20
20
"bootstrap-vue-next" : " ^0.25.6" ,
21
- "dompurify" : " ^3.1.5 " ,
22
- "marked" : " ^12 .0.2 " ,
21
+ "dompurify" : " ^3.2.0 " ,
22
+ "marked" : " ^15 .0.1 " ,
23
23
"pinia" : " ^2.2.4" ,
24
24
"vue" : " ^3.5.12" ,
25
25
"vue-router" : " ^4.4.5"
Original file line number Diff line number Diff line change 6
6
import { defineComponent , computed } from ' vue'
7
7
import { marked } from ' marked'
8
8
import DOMPurify from ' dompurify'
9
- import type { MarkedOptions } from ' marked'
10
- import type { Config } from ' dompurify'
11
9
12
10
export default defineComponent ({
13
11
name: ' MarkdownRenderer' ,
@@ -38,7 +36,7 @@ div :deep(h2) { font-size: 1.3rem; }
38
36
div :deep(h3 ) { font-size : 1.2rem ; }
39
37
div :deep(p ) { margin-bottom : 0.5rem ; }
40
38
div :deep(ul ), div :deep(ol ) { margin-bottom : 0.5rem ; }
41
- div :deep(strong ), div :deep(b ) {
42
- font-weight : bold ;
39
+ div :deep(strong ), div :deep(b ) {
40
+ font-weight : bold ;
43
41
}
44
42
</style >
You can’t perform that action at this time.
0 commit comments