ELN Step Section
Last updated on 17-Apr-2024 by Jakob Jakobsen Boysen
On this page
With this plugin you can add new Step Sections to the ELN.
Definition
The @scifeonElnStepSection
is used:
@scifeonElnStepSection({
id: "customSectionId",
title: "Custom Title",
})
Example
The following snippet adds three menu items to the main menu, contributions.json
:
{
...
"menu": {
"main": [
{
"text": "Simple item",
"rank": 100,
"routeId": "customRouteId"
},
{
"html": "<a href=\"https://docs.scifeon.com\" target=\"_blank\">Sci Docs</a>"
},
{
"text": "Sci Docs",
"uri": "http://docs.scifeon.com"
}
]
}
}