Skip to content
View vimtaai's full-sized avatar
Block or Report

Block or report vimtaai

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. elte elte Public

    ELTE segédanyagok

    JavaScript 13 15

  2. gumdrop gumdrop Public

    Script to display Markdown documents as static HTML pages

    JavaScript 10 2

  3. mdss mdss Public

    Stylesheets for displaying and printing Markdown documents

    CSS 10 2

  4. extramark extramark Public

    CommonMark superset with the most widely used syntax extensions

    JavaScript 9

  5. Comparison of features in various Ma... Comparison of features in various Markdown flavors
    1
    # Comparison of syntax extensions in Markdown flavors 
    2
    
                  
    3
    I created a crude comparison of the syntax of the various common Markdown extensions to have a better view on what are the most common extensions and what is the most widely accepted syntax for them. The list of Markdown flavors that I looked at was based on the list found on CommonMark's [GitHub Wiki](https://github.com/commonmark/commonmark/wiki/markdown-flavors).
    4
    
                  
    5
    | Flavor            |    Superscript    | Subscript | Deletion*<br>Strikethrough | Insertion*  | Highlight*  |  Footnote  |  Task list   | Table |      Abbr       | Deflist | Smart typo |    TOC    |                Math                 |              Math Block               | Mermaid |
  6. Functions to calculate luminance of ... Functions to calculate luminance of colors and contrast ratio of colors in SASS
    1
    // Calulates power with integer exponent
    2
    @function pow($number, $exponent) {
    3
      $value: 1;
    4
    
                  
    5
      @if $exponent > 0 {