1
0
Fork 0

changes code examples in the tutorial to align with the currently generated file

This commit is contained in:
Zee 2023-08-06 14:00:10 +00:00
parent 98dcb5301b
commit ba4b77cb42
4 changed files with 47 additions and 15 deletions

View file

@ -29,15 +29,25 @@ function draftBib({ part }) {
}
export const bib = {
name: 'tutorial.bib',
draft: draftBib,
measurements: ['head'],
draft: draftBib,[],
from: false,
hide: {
self: false,
from: false,
after: false
},
// highlight-start
options: {
neckRatio: { pct: 80, min: 70, max: 90, menu: 'fit' },
},
// highlight-end
measurements: [],
optionalMeasurements: [],
plugins: []
}
```
Can you guess what it means?