Skip to content

Commit f2d5e91

Browse files
committed
Fix broken syntax highlighting
1 parent 2233bbb commit f2d5e91

File tree

2 files changed

+4
-30
lines changed

2 files changed

+4
-30
lines changed

_config.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -46,32 +46,6 @@ kramdown:
4646
smart_quotes: lsquo,rsquo,ldquo,rdquo
4747
parse_block_html: true
4848

49-
# enable_coderay: true
50-
51-
# coderay:
52-
# coderay_wrap: div
53-
# coderay_line_numbers: nil
54-
# coderay_line_number_start: 1
55-
# coderay_tab_width: 4
56-
# coderay_bold_every: 10
57-
# coderay_css: class
58-
59-
# syntax_highlighter_opts:
60-
# wrap: div
61-
# line_numbers: nil
62-
# line_number_start: 1
63-
# tab_width: 4
64-
# bold_every: 10
65-
# css: class
66-
67-
# block:
68-
# wrap: div
69-
# line_numbers: nil
70-
# line_number_start: 1
71-
# tab_width: 4
72-
# bold_every: 10
73-
# css: class
74-
7549
highlighter: rouge
7650

7751
gems:

source/_cookbook/apache_configuration.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Your home assistant is correctly working on this web server and available at loc
2525

2626
To be able to access to your home assistant instance by using https://home.example.org, add to following file into `/etc/httpd/conf/extra/hass.conf`
2727

28-
```apacheconf
28+
```text
2929
<VirtualHost *:443>
3030
ProxyPreserveHost On
3131
ProxyRequests Off
@@ -37,7 +37,7 @@ To be able to access to your home assistant instance by using https://home.examp
3737

3838
and make sure that this file is read by apache's main configiuration file `/etc/httpd/conf/httpd.conf`
3939

40-
```apacheconf
40+
```text
4141
...
4242
Include conf/extra/hass.conf
4343
...
@@ -69,7 +69,7 @@ Start home assistant: Now, you have another instance running on localhost:8124
6969

7070
To access this instance by using https://countryside.example.org add to `/etc/httpd/conf/extra/hass.conf`
7171

72-
```apacheconf
72+
```text
7373
<VirtualHost *:443>
7474
ProxyPreserveHost On
7575
ProxyRequests Off
@@ -83,7 +83,7 @@ To access this instance by using https://countryside.example.org add to `/etc/ht
8383

8484
Add to your `/etc/httpd/conf/extra/hass.conf`
8585

86-
```apacheconf
86+
```text
8787
<VirtualHost *:80>
8888
ServerName example.org
8989
ServerSignature Off

0 commit comments

Comments
 (0)