Skip to content

Commit 296aed2

Browse files
fix(docs): use correct indentation in sublists (#227)
* test: turn off MD007 * test(lint): remove globs Its appears to be matching all files not just incoming change files for commit * chore(docs): fix indentation
1 parent ac7c932 commit 296aed2

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.markdownlint-cli2.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
fix: true
77

8-
globs:
9-
- "**/*.md"
10-
118
ignores:
129
- "CHANGELOG.md"
1310
- ".venv"
@@ -16,4 +13,7 @@ ignores:
1613
config:
1714
# MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md046.md
1815
MD046:
19-
style: consistent
16+
style: consistent
17+
# MD007/unordered-list-indent - this is not compatible with mkdocs indented lists which require 4 spaces.
18+
#It constantly de-dents 2 spaces leading lists to be flat
19+
MD007: false

website/docs/core-concepts/data-sharing.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ data. For more general information about these databases see
88
There are two key points that underpin data reuse in `ado`:
99

1010
- You can **share** a Sample Store between multiple Discovery Spaces
11-
- This allows a Discovery Space to (re)use relevant Entities and Measurements
12-
stored in the Sample Store by operations on other Discovery Spaces
11+
- This allows a Discovery Space to (re)use relevant Entities and Measurements
12+
stored in the Sample Store by operations on other Discovery Spaces
1313
- **Entities are always shared**. There is only one entry in a Sample Store for
1414
an Entity
1515

@@ -65,13 +65,13 @@ consider:
6565

6666
- **measured**: retrieve only Entities and measurements that were sampled via an
6767
operation on the given Discovery Space
68-
- this can be considered the "no sharing" mode. If an Entity or measurement
69-
exists in the Sample Store that's compatible with the Discovery Space, but
70-
no operation on the Discovery Space ever visited it, the "measured" mode
71-
will not show it
68+
- this can be considered the "no sharing" mode. If an Entity or measurement
69+
exists in the Sample Store that's compatible with the Discovery Space, but
70+
no operation on the Discovery Space ever visited it, the "measured" mode
71+
will not show it
7272
- **matching**: retrieve all Entities and measurements that match the Discovery
7373
Space
74-
- this can be considered the "sharing" mode.
74+
- this can be considered the "sharing" mode.
7575

7676
## Data sharing and memoization
7777

@@ -93,10 +93,10 @@ sampling process is as follows:
9393
- The Entity's record is retrieved from the Sample Store if present (via its
9494
unique identifier)
9595
- If **memoization is on**
96-
- for each experiment in the MeasurementSpace, `ado` checks if a result for it
97-
already exists (via the experiment's unique identifier)
98-
- if it does, the result is reused. If there is more than one result, they
99-
are all reused
96+
- for each experiment in the MeasurementSpace, `ado` checks if a result for it
97+
already exists (via the experiment's unique identifier)
98+
- if it does, the result is reused. If there is more than one result, they
99+
are all reused
100100
- if **memoization is off**
101-
- Existing results are ignored. Each experiment in the Measurement Space is
102-
applied again to the Entity. The new results are added to any existing.
101+
- Existing results are ignored. Each experiment in the Measurement Space is
102+
applied again to the Entity. The new results are added to any existing.

0 commit comments

Comments
 (0)