Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Fixed casing for relative fragment links
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Jun 26, 2024
1 parent 9448690 commit 1585044
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions content/docs/standard/table-dialect.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,17 @@ Delimited formats is a group of textual formats such as CSV and TSV. Their chara

- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [header](#header): `true` by default
- [headerRows](#headerrows): `1` by default
- [headerJoin](#headerjoin): ` ` by default
- [commentRows](#commentrows): undefined by default
- [commentChar](#commentchar): undefined by default
- [headerRows](#headerRows): `1` by default
- [headerJoin](#headerJoin): ` ` by default
- [commentRows](#commentRows): undefined by default
- [commentChar](#commentChar): undefined by default
- [delimiter](#delimiter): `,` by default
- [lineTerminator](#lineterminator): `\r\n` by default
- [quoteChar](#quotechar): `"` by default
- [doubleQuote](#doublequote): `true` by default
- [escapeChar](#escapechar): undefined by default
- [nullSequence](#nullsequence): undefined by default
- [skipInitialSpace](#skipinitialspace): `false` by default
- [lineTerminator](#lineTerminator): `\r\n` by default
- [quoteChar](#quoteChar): `"` by default
- [doubleQuote](#doubleQuote): `true` by default
- [escapeChar](#escapeChar): undefined by default
- [nullSequence](#nullSequence): undefined by default
- [skipInitialSpace](#skipInitialSpace): `false` by default

An example of a well-defined Table Dialect descriptor for a CSV format:

Expand All @@ -107,21 +107,21 @@ Structured formats is a group of structured or semi-structured formats such as J
- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [header](#header): `true` by default
- [property](#property): undefined by default
- [itemType](#itemtype): undefined by default
- [itemKeys](#itemkeys): undefined by default
- [itemType](#itemType): undefined by default
- [itemKeys](#itemKeys): undefined by default

### Spreadsheet

Spreadsheet formats is a group of sheet-based formats such as Excel or ODS. Their charactistics can be expressed the following properties:

- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [header](#header): `true` by default
- [headerRows](#headerrows): `1` by default
- [headerJoin](#headerjoin): ` ` by default
- [commentRows](#commentrows): undefined by default
- [commentChar](#commentchar): undefined by default
- [sheetNumber](#sheetnumber): `1` by default
- [sheetName](#sheetname): undefined by default
- [headerRows](#headerRows): `1` by default
- [headerJoin](#headerJoin): ` ` by default
- [commentRows](#commentRows): undefined by default
- [commentChar](#commentChar): undefined by default
- [sheetNumber](#sheetNumber): `1` by default
- [sheetName](#sheetName): undefined by default

### Database

Expand Down
2 changes: 1 addition & 1 deletion content/docs/standard/table-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ When the property `categoriesOrdered` is `false`, implementations `SHOULD` 

#### `missingValues` {#field-missingValues}

A list of missing values for this field as per [Missing Values](#missingvalues) definition. If this property is defined, it takes precedence over the schema-level property and completely replaces it for the field without combining the values.
A list of missing values for this field as per [Missing Values](#missingValues) definition. If this property is defined, it takes precedence over the schema-level property and completely replaces it for the field without combining the values.

For example, for the Table Schema below:

Expand Down

0 comments on commit 1585044

Please sign in to comment.