File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,26 @@ module.exports = function (defaults) {
7
7
rfcProcess : {
8
8
textLocation : 'processed-rfcs' ,
9
9
} ,
10
+
11
+ 'ember-prism' : {
12
+ theme : 'okaidia' ,
13
+
14
+ components : [
15
+ 'apacheconf' ,
16
+ 'bash' ,
17
+ 'css' ,
18
+ 'handlebars' ,
19
+ 'http' ,
20
+ 'javascript' ,
21
+ 'json' ,
22
+ 'markup-templating' ,
23
+ 'ruby' ,
24
+ 'scss' ,
25
+ 'yaml' ,
26
+ 'typescript' ,
27
+ 'diff' ,
28
+ ] ,
29
+ } ,
10
30
} ) ;
11
31
12
32
// Use `app.import` to add additional libraries to the generated
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ proposal-pr: ${frontMatter['RFC PR']}
85
85
tracking-link: ${ frontMatter [ 'tracking-link' ] ?? '' }
86
86
stage: ${ kebabCase ( frontMatter . Stage ?? 'accepted' ) }
87
87
---
88
- ${ frontMatter . __content } `) ;
88
+ ${ frontMatter . __content . replaceAll ( '```patch' , '```diff' ) } `) ;
89
89
90
90
// Stage: 'Accepted',
91
91
// 'Start Date': 2022-02-25T00:00:00.000Z,
You can’t perform that action at this time.
0 commit comments