Skip to content

Commit

Permalink
Clarify data types docs for param insert. Closes usnistgov#1037. (usn…
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-stein-nist committed Jan 26, 2022
1 parent 2c1fd5f commit f610a1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/reference/datatypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,16 +362,16 @@ Note: Markdown does not have an equivalent of the HTML <i> and <b> t

The OSCAL catalog, profile, and implementation layer models allow for control parameters to be defined and injected into prose text.

Parameter injection is handled in OSCAL as follows using the <insert> tag:
Parameter injection is handled in OSCAL as follows using the <code>&lt;insert&gt;</code> tag, where you must provide its <code>type</code> and the identifier reference with <code>id-ref</code>:

```html
Reviews and updates the risk management strategy <insert param-id="pm-9_prm_1"/> or as required, to address organizational changes.
This implements <insert type="param" id-ref="pm-9_prm_1"/> as required to address organizational changes.
```

The same string in Markdown is represented as follows:

```markdown
Reviews and updates the risk management strategy {{ pm-9_prm_1 }} or as required, to address organizational changes.
This implements {{ insert: param, pm-9_prm_1 }} as required to address organizational changes.
```

#### Specialized Character Mapping
Expand Down

0 comments on commit f610a1b

Please sign in to comment.