UNPKG
remark-clang-format
Version:
latest (2.4.5)
2.6.0
2.5.0
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.3
2.3.2
2.3.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.0
1.9.5
1.9.4
1.9.3
1.9.2
1.9.1
1.9.0
1.8.0
1.7.0
1.6.0
1.5.0
1.4.0
1.2.0
1.1.0
1.0.1
1.0.0
0.0.3
0.0.2
0.0.1
run clang-format for code in markdown
github.com/Ir1d/remark-clang-format
Ir1d/remark-clang-format
remark-clang-format
/
index.js
14 lines
(11 loc)
•
296 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
import
formatCode
from
'./code/format-code.js'
;
import
formatMath
from
'./math/format-math.js'
;
export
default
function
remarkCodeFormat
(
options
) {
return
function
transformer
(
tree
) {
formatCode
(tree);
if
(options && options.
math
) {
formatMath
(tree); } }; }