Giter VIP home page Giter VIP logo

blazor-docs's Introduction

Documentation Guidelines

This section contains guidelines on naming files, sections, documents and other document elements.

NOTE: Some of the items are marked as TODO which will be documented later.

HotFix and Master branch usage

The HotFix branch name will be in the below pattern:

https://gitlab.syncfusion.com/content/blazor-docs/tree/hotfix/hotfix-v{last major release version}

For example the latest HotFix branch is: https://gitlab.syncfusion.com/content/blazor-docs/tree/hotfix/hotfix-v19.2.0.55

For Daily UG publishing to live

HotFix branch has been created for blazor-docs repository. hereafter use this HotFix branch to commit your daily changes as like ES.

https://gitlab.synthofusion.com/content/blazor-docs/tree/hotfix/hotfix-v19.2.0.55

We will merge the changes from HotFix to Master and publish to live from Master branch hereafter.

For release UG publishing (Main\SP)

You can use the development branch to commit the changes for Main\SP release.

We will merge development branch to Master during release time as like other ES platforms and publish to live from Master branch and create HotFix for next version

Publishing Automation details

1. Staging

Topic Detail
Branch to commit development
Publishing URL https://sfblazor.azurewebsites.net/staging/documentation/introduction
Automation Starting time 6 PM daily
Publishing time 7 PM

2. Live

Topic Detail
Branch to commit latest HotFix before 2 PM
Publishing URL https://blazor.syncfusion.com/documentation/introduction
Automation Starting time 2:30 PM daily
Publishing time 3:30 PM

FrontMatter / (Title and description):

All the md files in the documentation must contain the FrontMatter. FrontMatter must be given with following fields.

---
layout: post
title: Aggregates in Blazor DataGrid Component | Syncfusion
description: Learn here all about aggregates in Syncfusion Blazor DataGrid component and more.
platform: Blazor
control: DataGrid
documentation: ug
---

General guidelines

Refer the below guidelines for adding description, title and h1 tags.

Format+of+meta+elements+for+UG+pages

Also refer the below link for common validation errors and solution for this errors in below.

Front+Matter+validation+-+Guide

Notes and Warning Syntax:

For Notes, warning, information syntax refer the below table

Syntax name Syntax usage
Notes >
Warning W>
Information or Notes I>
Errors E>
Tips T>

Spelling and file naming conventions errors handling

Refer the below guidelines to resolve spelling errors in the documentation.

Spelling - https://syncfusion.sharepoint.com/sites/DOCINFRA/SitePages/Spell%20Checker%20Automation%20-%20Guide.aspx

File name - https://syncfusion.sharepoint.com/sites/DOCINFRA/SitePages/File%20Path%20Validation%20%20Guidelines.aspx

File naming Convention:

  • All files should have .md extension.
  • Separate words in file names should be hyphenated
  • File names of the documents should have one or two-word names that describe the material covered in the document.
  • The full title of the document should be in the file name.
  • Phrase title and description in a way that users can determine what questions the text will answer, and material that will be addressed, without reading the content. This eases the time spent looking for answers, and improvises search/scanning, and possibly SEO.
  • Provide titles and headers in the form of “Using foo” over “How to Foo.”

For example, at the top section of each MD file,

Title : Getting started with Chart widget for Syncfusion Essential JS

Description : How to create a chart, add series, enable tooltip and other functionalities.

Markdown Syntax Guideline

  • Follow the syntax mentioned in this link for most of the elements. There are some elements which need special styling or additional settings to do. Those have been described in the below topics.

General

  • Do not bold the words unnecessarily.
  • Use inline code style wherever it is possible to highlight the keywords, variables or one line code examples that come within the paragraph.

Cross-reference

  • Link within the page (if you have a title with space, use hyphen (-))

Syntax: [Link name](#title-name)

Example: [How to best read this user guide] (#how-to-best-read-this-user-guide)

  • Link to the other page within the same platform documentation (using relative path). Tooltip text is optional.

Syntax: [Link name](relative path "Tooltip text")

Example: [Barcode](/js/Barcode/Getting-Started "Barcode Getting Started")

Table

  • Use the kramdown syntax for creating the tables.
  • Advanced tables: If you want to create an advanced tables with row span or column span or with code snippets, you can go with the standard html table syntax as described below.
  1. start with <table> tag. Tag should be left indented and should have empty space in left side.
  1. Provide TH tag for table headers.
  1. Code snippet can include within <td> [code snippet] </td>. Follow the same pattern like code snippet.
  • Do not provide table captions.
  • You should use the below markdown syntax if you want to use markdown syntax within the html tags.

{{'' | markdownify }}

Example:

{{'[syncfusion](http://cdn.syncfusion.com/js/assets/external/jquery-1.10.2.min.js)'| markdownify }}

Image

  • Make sure image is not resized or blurred.

  • Caption is not necessary to provide for all images except for the case where we will have displayed more than one image.

  • Adding Image : General markdown syntax will work.

Syntax: ![Alt text](imagepath)

Example: ![Alt text](/path/to/img.jpg)

  • Adding image with caption:

Syntax: {% include image.html url="image path" caption="caption text"%}

Example: {% include image.html url="/js/DatePicker/Appearance-and-Styling_images/Appearance-and-Styling_img2.png" caption="caption text"%}

  • Maximum width of the image should be 750 PX
  • Maximum height of the image should be 550 PX
  • Image format should be either .jpeg or .png format
  • Size of the image should not exceed 20 to 40 KB
  • If you are including the image to show an output of a code block, make sure the exact output can see the user also when he executes the same code snippet.

Code Blocks

  • Refer this page for Code block syntax and supported languages.
  • Align the code snippets using following free formatters: JS , HTML
  • Remove extra lines added within the code block.
  • Make sure the given code block runs without any issues.
  • JSRender template syntax can be rendered by the following syntax :

{{"{{"}} code block here {{}}}}

Loading code snippet from a file

YouTube

Razor Code Block

  • For Using the Razor code in the code snippet

  • Syntax: {% highlight razor %} [CODE] {% endhighlight %}

  • Example: {% highlight razor %}

@using Syncfusion.Blazor.Grids

<SfGrid DataSource="@Orders" AllowSorting="true" AllowPaging="true" AllowExcelExport="true" AllowPdfExport="true" ContextMenuItems="@(new List() { "AutoFit", "AutoFitAll", "SortAscending", "SortDescending","Copy", "Edit", "Delete", "Save", "Cancel","PdfExport", "ExcelExport", "CsvExport", "FirstPage", "PrevPage","LastPage", "NextPage"})"> . . .

@code{ . . . }

{% endhighlight %}

Bullet style

  • Refer the syntax provided in the Kramdown site.
  • Do not provide a line gap between the bullet points.

Notes style

  • To add the different type of predefined blockqoute use the below syntax. Since we will insert the title or relevant icon for this block of content, do not add the "Title".

Information or Notes

Syntax: I> [Content]

Example: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis volutpat, elit eget iaculis venenatis

Warning

Syntax: W> [Content]

Example: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis volutpat, elit eget iaculis venenatis

Errors

Syntax: E> [Content]

Example: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis volutpat, elit eget iaculis venenatis

Tips

Syntax: T> [Content]

Example: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis volutpat, elit eget iaculis venenatis

Notes multiple paragraph style

  • Use the BR tag between the content to enable multiple paragraph style.

Tips

Syntax: T> [Content]

Example: Lorem ipsum dolor sit amet, consectetur adipiscing elit. **
**Duis volutpat, elit eget iaculis venenatis

See also

  • See also section can be added at the bottom of the page using the below syntax

Syntax: {% seealso %} [Content] {% endseealso %}

Example: {% seealso %} See the Cross Reference section {% endseealso %}

JS Playground integration

  • Todo -> How to link the JS Playground link on top of the each code blocks?

Keyboard shortcuts

  • Enclose the each keys with <kbd> tag to display the keys with different styling. For ex, Ctrl+A .

Product Release Version variable

  • To add the version number in the documentation, use the below variables that replace the corresponding release version number while publishing. So that, always your content will contains the latest release version number.
Variable Name Output Description
{{ site.blazorversion }} 13.2.29 Syncfusion Essential Studio version
{{ site.releaseversion }} 13.2.0.29 Syncfusion Essential Studio version
{{ site.20esreleaseversion }} 13.1200.0.29 Syncfusion Essential Studio assemblies version for .NET Framework 2.0
{{ site.35esreleaseversion }} 13.1350.0.29 Syncfusion Essential Studio assemblies version for .NET Framework 3.5
{{ site.40esreleaseversion }} 13.1400.0.29 Syncfusion Essential Studio assemblies version for .NET Framework 4.0
{{ site.45esreleaseversion }} 13.1450.0.29 Syncfusion Essential Studio assemblies version for .NET Framework 4.5
{{ site.451esreleaseversion }} 13.1451.0.29 Syncfusion Essential Studio assemblies version for .NET Framework 4.5.1
{{ site.mvc3releaseversion }} 13.1300.0.29 Syncfusion Essential Studio assemblies based on MVC Version 3.0
{{ site.mvc4releaseversion }} 13.1400.0.29 Syncfusion Essential Studio assemblies based on MVC Version 4.0
{{ site.mvc5releaseversion }} 13.1500.0.29 Syncfusion Essential Studio assemblies based on MVC Version 5.0

API Reference Guideline

Naming Standards

See Also

Style Guide

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.