From 75de364779069afb711a4d69434a4dd7cb45421b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cern=C3=BD?= Date: Wed, 20 Dec 2023 14:17:14 +0100 Subject: [PATCH] Fix broken formatting Improve formatting of the profile. --- docs/manual/developer/03_creating_content.md | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/docs/manual/developer/03_creating_content.md b/docs/manual/developer/03_creating_content.md index 0a0dacd4579..88332587657 100644 --- a/docs/manual/developer/03_creating_content.md +++ b/docs/manual/developer/03_creating_content.md @@ -624,27 +624,20 @@ requirements or how it is applied. A profile should define these attributes: - `title`: Human-readable title of the profile. - - `description`: Human-readable HTML description, which provides broader context for non-experts than the rationale. - - `extends`: The `id` of a profile to be extended. A profile can make incremental changes based on another profile, via `extends` attribute. The extendee can then, via the `selections` attribute, select/unselect rules and change XCCDF Value selectors. - -- `selections`: List composed of items of these types: - -- `` id`s of rules to be included in the profile, e.g. `accounts_tmout ``, +- `selections`: List composed of items of these types: + - IDs of rules to be included in the profile, e.g. `accounts_tmout `, or - -- `` id`s of rules to be excluded from the profile prefixed by an exclamation mark, e.g. `!accounts_tmout ``, + - IDs of rules to be excluded from the profile prefixed by an exclamation mark, e.g. `!accounts_tmout`, or - -- changes to XCCDF Value selectors, e.g. `var_accounts_tmout=10_min`, + - changes to XCCDF Value selectors, e.g. `var_accounts_tmout=10_min`, or - -- rule refinements, e.g. `accounts_tmout.severity=high`. + - rule refinements, e.g. `accounts_tmout.severity=high`. ## Controls