Skip to content

Commit 33aa1f7

Browse files
committed
docs: Add static header ids to fcar recipes doc
1 parent 718f56b commit 33aa1f7

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

doc/fcar_recipes.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ Each recipe has three components:
1515

1616
**Table of contents**
1717

18-
- [Review and correction of programmatic value splitting](#review-and-correction-of-programmatic-value-splitting)
19-
* [Prep/setup job](#prepsetup-job)
20-
+ [Normalization job example](#normalization-job-example)
21-
+ [Prep example](#prep-example)
22-
* [FCAR configuration](#fcar-configuration)
23-
* [Merge job](#merge-job)
18+
- [Review and correction of programmatic value splitting](#split)
19+
* [Prep/setup job](#splitprep)
20+
+ [Normalization job example](#splitprepnorm)
21+
+ [Prep example](#splitprepprep)
22+
* [FCAR configuration](#splitconfig)
23+
* [Merge job](#splitmerge)
2424

25-
## Review and correction of programmatic value splitting
25+
## Review and correction of programmatic value splitting {#split}
2626

2727
The prep and merge sections below use `:init__prep` as the job output from which we are peeling off this FCAR proccess, and thus to which we are merging its results back in.
2828

29-
### Prep/setup job
29+
### Prep/setup job {#splitprep}
3030

3131
To ease the merge process, it's recommended you break this into two jobs:
3232

3333
- normalize: normalizes the values to be included in the worksheet
3434
- prep: deduplicates on normalized values and finalizes prep for the split FCAR
3535

36-
#### Normalization job example
36+
#### Normalization job example {#splitprepnorm}
3737

3838
In this example, we are pulling just the location field values out of a single migrating table and applying [the normalization described in the worksheet instructions](https://github.com/lyrasis/kiba-extend/blob/main/fcar_instructions/split_values.adoc#details-on-data-preprocessing-done-prior-to-preparing-this-worksheet) to them.
3939

@@ -92,7 +92,7 @@ module Project
9292
end
9393
~~~
9494

95-
#### Prep example
95+
#### Prep example {#splitprepprep}
9696

9797
~~~ ruby
9898
# frozen_string_literal: true
@@ -142,7 +142,7 @@ module Project
142142
end
143143
~~~
144144

145-
### FCAR configuration
145+
### FCAR configuration {#splitconfig}
146146

147147
~~~ ruby
148148
# frozen_string_literal: true
@@ -245,7 +245,7 @@ module Project
245245
end
246246
~~~
247247

248-
### Merge job
248+
### Merge job {#splitmerge}
249249

250250
This job replaces the `location` values in the original `:init__prep` output with the correctly and unambiguously delimited values from the FCAR worksheet.
251251

0 commit comments

Comments
 (0)