Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
opf-2021-ttc2070-core-template-v1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jamkit
project-templates
opf-2021-ttc2070-core-template-v1
Commits
d55854e9
Commit
d55854e9
authored
4 years ago
by
Marko Rintamäki
Browse files
Options
Downloads
Patches
Plain Diff
Delete 00.-Feature-showcase.md
parent
94598c4d
No related branches found
No related tags found
No related merge requests found
Pipeline
#437341
passed
4 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
00.-Feature-showcase.md
+0
-133
0 additions, 133 deletions
00.-Feature-showcase.md
with
0 additions
and
133 deletions
00.-Feature-showcase.md
deleted
100644 → 0
+
0
−
133
View file @
94598c4d
---
title
:
Feature showcase
---
There are a lot on neat features in mkdocs. Here is a small showcase of the features.
For full list please see the
[
Material for MkDocs documentation
](
https://squidfunk.github.io/mkdocs-material/reference/abbreviations/
)
.
### Zoomable images
Zoom images using LightGallery.
=== "Example"
!
[
!This is image subtitle
](
images/example_image.jpg
)
=== "Code"
```
markdown
!
[
!This is image subtitle
](
images/example_image.jpg
)
```
### UML with superfences
This uses the mermaid syntax. See documentation from:
[
https://mermaid-js.github.io/mermaid/#/
](
https://mermaid-js.github.io/mermaid/#/
)
=== "Example"
```
mermaid
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
=== "Code"
```
```mermaid
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
```
### Admonitions
**Supproted types**
note, seealso, abstract, summary, tldr, info, todo, tip, hint, important, success, check, done, question, help, faq, warning, caution, attention, failure, fail, missing, danger, error, bug, example, quote, cite
**Normal**
=== "Example"
!!! note "Note title"
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
=== "Code"
```
markdown
!!! note "Note title"
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
```
**Collapsible blocks**
=== "Example"
??? warning "Warning title"
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
=== "Code"
```
markdown
??? warning "Warning title"
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
```
**Collapsible blocks (open by default)**
Adding a
`+`
after
`???`
will render the block as open on page load:
=== "Example"
???+ warning "Warning title"
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
=== "Code"
```
markdown
???+ warning "Warning title"
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.
```
### Tasklists
=== "Example"
-
[X] item 1
*
[X] item A
*
[ ] item B
more text
+
[x] item a
+
[ ] item b
+
[x] item c
*
[X] item C
-
[ ] item 2
-
[ ] item 3
=== "Code"
```
- [X] item 1
* [X] item A
* [ ] item B
more text
+ [x] item a
+ [ ] item b
+ [x] item c
* [X] item C
- [ ] item 2
- [ ] item 3
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment