Skip to content

Commit c8938bc

Browse files
authored
Merge pull request #59 from szTheory/patch-1
README markdown syntax highlighting
2 parents c7d27fb + 56f1ab6 commit c8938bc

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,23 @@ Use In Your Project
1212

1313
Add the plugin to your `rebar.config`:
1414

15-
{plugins, [pc]}.
16-
{provider_hooks,
17-
[
18-
{pre,
19-
[
20-
{compile, {pc, compile}},
21-
{clean, {pc, clean}}
22-
]
23-
}
24-
]
25-
}.
26-
15+
```erlang
16+
{plugins, [pc]}.
17+
{provider_hooks,
18+
[
19+
{pre,
20+
[
21+
{compile, {pc, compile}},
22+
{clean, {pc, clean}}
23+
]
24+
}
25+
]
26+
}.
27+
```
2728

2829
If you want to use tools like clang-tidy, don't forget to enable the compile commands db like this:
2930

30-
```
31+
```erlang
3132
{pc_clang_db, true}.
3233
```
3334

0 commit comments

Comments
 (0)