Skip to content

Commit 69c150d

Browse files
committed
Use monospace instead of bold for predicate signatures
1 parent 82d9d46 commit 69c150d

File tree

4 files changed

+37
-37
lines changed

4 files changed

+37
-37
lines changed

docs/codeql/codeql-language-guides/customizing-library-models-for-actions.rst

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ The CodeQL library for GitHub Actions exposes the following extensible predicate
2424

2525
Customizing data flow and taint tracking:
2626

27-
- **actionsSourceModel**\(action, version, output, kind, provenance)
28-
- **actionsSinkModel**\(action, version, input, kind, provenance)
29-
- **actionsSummaryModel**\(action, version, input, output, kind, provenance)
27+
- ``actionsSourceModel(action, version, output, kind, provenance)``
28+
- ``actionsSinkModel(action, version, input, kind, provenance)``
29+
- ``actionsSummaryModel(action, version, input, output, kind, provenance)``
3030

3131
Customizing Actions-specific analysis:
3232

33-
- **argumentInjectionSinksDataModel**\(regexp, command_group, argument_group)
34-
- **contextTriggerDataModel**\(trigger, context_prefix)
35-
- **externallyTriggerableEventsDataModel**\(event)
36-
- **immutableActionsDataModel**\(action)
37-
- **poisonableActionsDataModel**\(action)
38-
- **poisonableCommandsDataModel**\(regexp)
39-
- **poisonableLocalScriptsDataModel**\(regexp, group)
40-
- **repositoryDataModel**\(visibility, default_branch_name)
41-
- **trustedActionsOwnerDataModel**\(owner)
42-
- **untrustedEventPropertiesDataModel**\(property, kind)
43-
- **untrustedGhCommandDataModel**\(cmd_regex, flag)
44-
- **untrustedGitCommandDataModel**\(cmd_regex, flag)
45-
- **vulnerableActionsDataModel**\(action, vulnerable_version, vulnerable_sha, fixed_version)
46-
- **workflowDataModel**\(path, trigger, job, secrets_source, permissions, runner)
33+
- ``argumentInjectionSinksDataModel(regexp, command_group, argument_group)``
34+
- ``contextTriggerDataModel(trigger, context_prefix)``
35+
- ``externallyTriggerableEventsDataModel(event)``
36+
- ``immutableActionsDataModel(action)``
37+
- ``poisonableActionsDataModel(action)``
38+
- ``poisonableCommandsDataModel(regexp)``
39+
- ``poisonableLocalScriptsDataModel(regexp, group)``
40+
- ``repositoryDataModel(visibility, default_branch_name)``
41+
- ``trustedActionsOwnerDataModel(owner)``
42+
- ``untrustedEventPropertiesDataModel(property, kind)``
43+
- ``untrustedGhCommandDataModel(cmd_regex, flag)``
44+
- ``untrustedGitCommandDataModel(cmd_regex, flag)``
45+
- ``vulnerableActionsDataModel(action, vulnerable_version, vulnerable_sha, fixed_version)``
46+
- ``workflowDataModel(path, trigger, job, secrets_source, permissions, runner)``
4747

4848
Examples of custom model definitions
4949
------------------------------------
@@ -62,9 +62,9 @@ To allow any Action from the publisher ``octodemo``, such as ``octodemo/3rd-part
6262
.. code-block:: yaml
6363
6464
extensions:
65-
- addsTo:
65+
- addsTo:
6666
pack: codeql/actions-all
67-
extensible: trustedActionsOwnerDataModel
67+
extensible: trustedActionsOwnerDataModel
6868
data:
6969
- ["octodemo"]
7070

docs/codeql/codeql-language-guides/customizing-library-models-for-javascript.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ A data extension for JavaScript is a YAML file of the form:
2222
2323
The CodeQL library for JavaScript exposes the following extensible predicates:
2424

25-
- **sourceModel**\(type, path, kind)
26-
- **sinkModel**\(type, path, kind)
27-
- **typeModel**\(type1, type2, path)
28-
- **summaryModel**\(type, path, input, output, kind)
29-
- **barrierModel**\(type, path, kind)
30-
- **barrierGuardModel**\(type, path, acceptingValue, kind)
25+
- ``sourceModel(type, path, kind)``
26+
- ``sinkModel(type, path, kind)``
27+
- ``typeModel(type1, type2, path)``
28+
- ``summaryModel(type, path, input, output, kind)``
29+
- ``barrierModel(type, path, kind)``
30+
- ``barrierGuardModel(type, path, acceptingValue, kind)``
3131

3232
We'll explain how to use these using a few examples, and provide some reference material at the end of this article.
3333

docs/codeql/codeql-language-guides/customizing-library-models-for-python.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ A data extension for Python is a YAML file of the form:
2222
2323
The CodeQL library for Python exposes the following extensible predicates:
2424

25-
- **sourceModel**\(type, path, kind)
26-
- **sinkModel**\(type, path, kind)
27-
- **typeModel**\(type1, type2, path)
28-
- **summaryModel**\(type, path, input, output, kind)
29-
- **barrierModel**\(type, path, kind)
30-
- **barrierGuardModel**\(type, path, acceptingValue, kind)
25+
- ``sourceModel(type, path, kind)``
26+
- ``sinkModel(type, path, kind)``
27+
- ``typeModel(type1, type2, path)``
28+
- ``summaryModel(type, path, input, output, kind)``
29+
- ``barrierModel(type, path, kind)``
30+
- ``barrierGuardModel(type, path, acceptingValue, kind)``
3131

3232
We'll explain how to use these using a few examples, and provide some reference material at the end of this article.
3333

docs/codeql/codeql-language-guides/customizing-library-models-for-ruby.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ A data extension for Ruby is a YAML file of the form:
2323
2424
The CodeQL library for Ruby exposes the following extensible predicates:
2525

26-
- **sourceModel**\(type, path, kind)
27-
- **sinkModel**\(type, path, kind)
28-
- **typeModel**\(type1, type2, path)
29-
- **summaryModel**\(type, path, input, output, kind)
30-
- **barrierModel**\(type, path, kind)
31-
- **barrierGuardModel**\(type, path, acceptingValue, kind)
26+
- ``sourceModel(type, path, kind)``
27+
- ``sinkModel(type, path, kind)``
28+
- ``typeModel(type1, type2, path)``
29+
- ``summaryModel(type, path, input, output, kind)``
30+
- ``barrierModel(type, path, kind)``
31+
- ``barrierGuardModel(type, path, acceptingValue, kind)``
3232

3333
We'll explain how to use these using a few examples, and provide some reference material at the end of this article.
3434

0 commit comments

Comments
 (0)