https://github.com/kit-data-manager/fairdo-cookbook
A cookbook about FAIR Digital Objects. Feel free to suggest recipes via issues.
https://github.com/kit-data-manager/fairdo-cookbook
fair-data fair-principles
Last synced: 2 months ago
JSON representation
A cookbook about FAIR Digital Objects. Feel free to suggest recipes via issues.
- Host: GitHub
- URL: https://github.com/kit-data-manager/fairdo-cookbook
- Owner: kit-data-manager
- Created: 2021-05-03T09:43:45.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-16T09:20:38.000Z (over 1 year ago)
- Last Synced: 2025-02-06T02:51:20.416Z (4 months ago)
- Topics: fair-data, fair-principles
- Language: Handlebars
- Homepage: https://kit-data-manager.github.io/fairdo-cookbook/
- Size: 8.56 MB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fairdo-cookbook
## Hierarchically numbered, ordered lists
This markdown code with custom html tag:
```
1. first
1. sub
1. subsub
2. second
1. sub
2. sub```
will result in the nice HTMl version of this:
```
1. first
1.1 sub
1.1.1 subsub
2. second
2.1 sub
2.2 sub
```instead of the default, which would have been
1. first
1. sub
1. subsub
2. second
1. sub
2. subwithout the tag. It is realized using a CSS trick in `hierarchical_numbered_lists.css`.
## Centering images
By default the images are left-aligned with the maximum width being the same as the text. To center the images, you may use the centerbox class:
```html
![]()
```