- IT Assist
- Search Assist
- Smart Assist
- Platform
All product documentation supports only markdown syntax for alignment, styling and formatting.
Note: Before going to write this documentation please make sure yourself comfortable with markdown documentation and syntax.
To write any product documentation please follow below steps.
- Navigate to the docs folder
- Select the language that you want to write the doc.
- Once you open selected language folder you will be able to see the availale prodcuts documentation folders.
- Open any of the product folder Eg:It Assist
- Create the file with .md extension.
- Once file created make sure you add the front matters on top of the documentation page which defines the title of the doc and navigation link.
Eg:
---
title: Analyse
permalink: en/itassist/Analyse
---
- Next to the frontmatters section , using the markdown syntax we can write documentation.
Once we are done with writing with documentation next is update the documentation link in the sidebar.
-
Navigate to the sidebar(_includes/sidebar) folder.
-
Select the language folder which you want to update the sidebar link for the documentation.
-
Once you open the selected language folder you will be able to see the all available products sidebar .md files. You will be able identify the product specific sidebar with the file name.
-
With the help of basic github markdown links Syntax we able to define the sidebar navigation links.
-
Please make sure given link should match with frontmatter permalink.
Eg:
[Analyse](https://koredotcom.github.io/docs/en/itassist/Analyse). -
If we want collapsible links section please use below code snippet.
Eg:
<details > <summary>Quick Start Guide_en </summary> - [Accessing the Platform](en/itassist/Accessing%20The%20Platform) - [Working with the Builder](https://duckduckgo.com) - [Using Workspaces](https://duckduckgo.com) </details>
While writing the documentation there would be a cases where we have to display the images, to achive this use case please follow below steps.
- Navigate to the images folder.
- Select the product folder where you would like to upload the image.
- Please upload image here
Note: Inside product folder you were free to create the subfolder to organize as per your documentation needs.
Just we have to give the correct path in the documentation to load the images. Please refer the below markdown syntax to load the images.
Eg:

Syntax
<tip> **Tip:** This is a tip Info </tip>
Demo
Syntax
<warning> **Warning:** Deleted Tasks Cannot Be Restored. [here](https://duckduckgo.com). </warning>
Demo
Syntax
<note> **Note:** This is a note Info </note>
Demo
Syntax
<info> **Info:** This is a Info </info>
Demo



