mirror of
https://github.com/inspec/inspec
synced 2024-11-27 07:00:39 +00:00
Markdown titles sometimes need _
s escaped (#2451)
When a header includes two `_`s, they must be escaped, otherwise, the text between the two `_`s is rendered with emphasis. E.g., `<h1 id="etchostsallow">etc<em>hosts</em>allow</h1>` Escaping the `_`s fixes this and the header is rendered properly. This is a fix for: * etc_hosts_allow * etc_hosts_deny * postgres_hba_conf * postgres_ident_conf This change also adds the `h1` title to the windows_hotfix resource page. Signed-off-by: Nathen Harvey <nharvey@chef.io>
This commit is contained in:
parent
971a5a1122
commit
65589f8f78
5 changed files with 6 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
title: About the etc_hosts_allow Resource
|
||||
---
|
||||
|
||||
# etc_hosts_allow
|
||||
# etc\_hosts\_allow
|
||||
|
||||
Use the `etc_hosts_allow` InSpec audit resource to test rules set to accept daemon and client traffic set in /etc/hosts.allow file.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: About the etc_hosts_deny Resource
|
||||
---
|
||||
|
||||
# etc_hosts_deny
|
||||
# etc\_hosts\_deny
|
||||
|
||||
Use the `etc_hosts_deny` InSpec audit resource to test rules set to reject daemon and client traffic set in /etc/hosts.deny.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: About the postgres_hba_conf Resource
|
||||
---
|
||||
|
||||
# postgres_hba_conf
|
||||
# postgres\_hba\_conf
|
||||
|
||||
Use the `postgres_hba_conf` InSpec audit resource to test the client authentication data defined in the pg_hba.conf file.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: About the postgres_ident_conf Resource
|
||||
---
|
||||
|
||||
# postgres_ident_conf
|
||||
# postgres\_ident\_conf
|
||||
|
||||
Use the `postgres_ident_conf` InSpec audit resource to test the client authentication data defined in the pg_hba.conf file.
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
title: About the windows_hotfix Resource
|
||||
---
|
||||
|
||||
# windows_hotfix
|
||||
|
||||
Use the `windows_hotfix` InSpec audit resource to test if the hotfix has been installed on a Windows system.
|
||||
|
||||
<br>
|
||||
|
|
Loading…
Reference in a new issue