Skip to content

Latest commit

 

History

History
113 lines (83 loc) · 3.65 KB

OLD_README.md

File metadata and controls

113 lines (83 loc) · 3.65 KB

OpenSilver.Documentation

Set up

Download docfx

Add docfx to Path to call the command from everywhere with the console : set PATH=%PATH%;D:\docfx\

Add a PATH with windows Interface

To build a project, use the command : docfx docfx.json

To try in local, use the command : docfx serve _site The pages will be uploaded on your port 8080 by default (http://localhost:8080), you can change the port with the -p such as : docfx serve _site -p 8081

finally, you can merge the 2 commands with : docfx docfx.json --serve

Apply a template : docfx build docfx.json -t templates\<template folder name>

and the merged command docfx build docfx.json -t templates\<template folder name> --serve

Docfx Documentation

Generate the Source Code

To generate the documentation from the source code, one needs to edit the docfx.json file. In the metadata section, there is the path of the csproj :

"metadata": [
  {
    "src": [
      {
        "files": [
          "../../OpenSilverDocumentation/OpenSilver/src/CSHTML5.Runtime/**.csproj"
        ]
      }
    ],

and use the command to read only the metadata configuration

docfx metadata

Edit Files

To modify the current documentation, one needs to edit the .md file in the master branch.

Docfx Markdown .MD Markdown

The files used are referenced in the .json which is at the base of the folder. Every folder has the same structure :

  • The MD files that generate HTML pages. They are the ones to edit to change the content of a page.

  • The toc.yml file, it references every file of the folder with a name and the path (href). yml files are space sensitive meaning each line must have a one tab indentation only to be properly working.

  • the toc file at the base of the project is slightly different because it is used to build the navbar and the sidebar. Name will be the navbar tab name, the homepage will be the .md file linked to the navbar and finally, the href will be where the sidebar (menu) is generated.

Markdown exemples

Create a title

# H1 ##H2 ### H3

Emphasis a Text

*bold text*

Unordered List :

* Element 1
* Element 2
* Element 3

Ordered List :

1. Element 1
2. Element 2
3. Element 3

Add an image

![Name](/images/img.png "title")

add an hyperlink :

[Text](link)

add Code :

  ``` Code ```  

Modify the visual style of the Documentation

The template structure is the following :

  • Fonts folder, this is where you add all the fonts

  • Layout folder, this is where you find the "_master.tmpl" file which organize the whole documentation structure. It's HTML compatible, so you can add div to change the structure.

  • Partials folder, this is where you can organize small structure of the code, small div. Currently, the documentation uses the ".tmpl.partial" files, the ".liquid" seems unused. here is you change the navbar layout ("navbar.tmpl.partial"), breadcrumbs ("breadcrumb.tmpl.partial"), toc ("toc.tmpl.partial"), ...

  • Style folder, this is your resources folder where you find the ".css" and the ".js" files. The "docfx.js" & "docfx.css" are the default looks of the documentation. The "docfx.vendor.js" and the "docfx.vendor.css" are the responsive and functional part of the documentation. "main.js" & "main.css" contains all the custom style.