Skip to content

michaelsalomone/microshare.github.io

 
 

Repository files navigation

Microshare Documentation Site

Get started with Microshare, the world's only prebuilt, scalable data management and sharing solution for IoT.

Contribute to this documentation

This documentation is built with Jekyll and hosted on GitHub Pages at https://microshare.github.io.

It can be run locally by following the Jekyll installation instructions Run with bundle exec jekyll serve

Writing new articles

The documentation articles are written in Markdown, and you can find the files in the docs folder.

To add a new article, head to _data/docs.yml and add the title of the article. Then create a file with the same title in the desired folder in the docs folder.

Add Images

Use the _includes/image.html helper to add images to your content, simply add in your .md file:

{% include image.html url="/assets/img/banner.jpg" description="Banner" %}

And replace the url with the path to your image (usually in the /assets/img folder) and add a description.

If needed, you can set the width of your image with the width parameter, for example:

{% include image.html url="/assets/img/banner.jpg" description="Banner" width="250px" %}

Add Code Snippets

Syntax highlighting of code snippets is supported using Rouge. To include a code snippet, just use the dedicated tag as below:

{% highlight http %}
  POST /share/:recType HTTP/1.1
  Host: api.microshare.io
  Content-Type: application/json
  Authorization: Bearer {{token}}
  {
    "hello": "world"
  }
{% endhighlight %}

A list of tags and supported languages is available at List of supported languages and lexers

About

Microshare Documentation Site

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 87.2%
  • Ruby 6.7%
  • JavaScript 4.2%
  • CSS 1.9%