You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@deltakosh - I checked the file in question. Prettier actually did what it should do, the file is incorrectly formatted:
original file:
## Animation### Bones
Provides a world matrix for each vertex, based on skeletal (bone/joint) animation.
- Inputs:
- matricesIndices: Vector4
- matricesWeights: Vector4
- matricesIndicesExtra: Vector4
- matricesWeightsExtra: Vector4
- world: Matrix
- Outputs:
- output: Matrix
which formats it to:
## Animation### Bones
Provides a world matrix for each vertex, based on skeletal (bone/joint) animation. - Inputs: - matricesIndices: Vector4 - matricesWeights: Vector4 - matricesIndicesExtra: Vector4 - matricesWeightsExtra: Vector4 - world: Matrix - Outputs: - output: Matrix
According to the standard, the initial - character needs to be the first character of the new line. if the file originally was this (correct markdown):
## Animation### Bones
Provides a world matrix for each vertex, based on skeletal (bone/joint) animation.
- Inputs:
- matricesIndices: Vector4
- matricesWeights: Vector4
- matricesIndicesExtra: Vector4
- matricesWeightsExtra: Vector4
- world: Matrix
- Outputs:
- output: Matrix
Prettier formats it to this:
## Animation### Bones
Provides a world matrix for each vertex, based on skeletal (bone/joint) animation.
- Inputs:
- matricesIndices: Vector4
- matricesWeights: Vector4
- matricesIndicesExtra: Vector4
- matricesWeightsExtra: Vector4
- world: Matrix
- Outputs:
- output: Matrix
You can also see it in the github markdown parser (the following is the example of how it looks incorrectly, and correctly after formatting)
Provides a world matrix for each vertex, based on skeletal (bone/joint) animation.
- Inputs:
- matricesIndices: Vector4
- matricesWeights: Vector4
- matricesIndicesExtra: Vector4
- matricesWeightsExtra: Vector4
- world: Matrix
- Outputs:
- output: Matrix
Provides a world matrix for each vertex, based on skeletal (bone/joint) animation.
Inputs:
matricesIndices: Vector4
matricesWeights: Vector4
matricesIndicesExtra: Vector4
matricesWeightsExtra: Vector4
world: Matrix
Outputs:
output: Matrix
What I can suggest is to format everything, making sure our markdown is conform.
See #1197 (comment)
The text was updated successfully, but these errors were encountered: