Skip to content

Latest commit

 

History

History
233 lines (167 loc) · 2.45 KB

slides.md

File metadata and controls

233 lines (167 loc) · 2.45 KB

VIMDECK

PURE AWESOME

VIM ROCKS!

PARAGRAPHS

This is a paragraph (plain text)

This is another paragraph

NUMBERED LIST

  1. This is how a numbered list
  2. Looks in vimdeck
  3. What do you think?

BULLETS

• First{~ • Second • Third~}

BULLETS

{• First} • Second{~ • Third~}

BULLETS

{• First • Second} • Third

CODE

module Parts
  class foo
    def slide
     "of a"
    end

    def can
      highlight = "vimdeck"
    end
  end
end

CODE

{~module Parts
  class foo
    def slide
     "of a"
    end

    def can
      highlight = ~}"vimdeck"{~
    end
  end
end~}

CODE

{~module Parts
  class foo
    def slide
     "of a"
    end

    def~} can
      {~highlight = "vimdeck"
    end
  end
end~}

CODE

{~module Parts
  class foo
    def slide
     "of a"
    end

    def can~}
      highlight {~= "vimdeck"
    end
  end
end~}

CODE

{~module~} Parts
  {~class foo
    def slide
     "of a"
    end

    def can
      highlight = "vimdeck"
    end
  end
end~}

CODE

{~module Parts
  class foo
    def slide~}
     "of a"
    {~end

    def can
      highlight = "vimdeck"
    end
  end
end~}

CODE

{~module Parts
  class foo
    def~} slide
     {~"of a"
    end

    def can
      highlight = "vimdeck"
    end
  end
end~}

CODE PT 2

(function( window, $, undefined ) {
    $( '.hello' ).on( 'click', function sayHello() {
        alert( 'Why, hello there!' );
    });
})( window, jQuery );
<body>
    <a href="#" class="hello">Hello!</a>
</body>

CODE PT 2

{~(function( window, $, undefined ) {
    $( '.hello' ).on( 'click', function sayHello() {~}
        alert( 'Why, hello there!' );{~
    });
})( window, jQuery );~}
<body>
    <a href="#" class="hello">Hello!</a>
</body>

CODE PT 2

(function( window, $, undefined ) {
    $( '.hello' ).on( 'click', function sayHello() {
        alert( 'Why, hello there!' );
    });
})( window, jQuery );
{~<body>~}
    <a href="#" class="hello">Hello!</a>
{~</body>~}

CODE PT 2

{~(function( window, $, undefined ) {
    $( '.hello' ).on( 'click', function sayHello() {~}
        alert( 'Why, hello there!' );{~
    });
})( window, jQuery );
<body>
    <a href="#" class="hello">Hello!</a>
</body>~}

The End!