★ wanayoo — archive 1999 https://github.com/vim-jpNouvelle recherche | Portail wanayoo

vim-jp (vim-jp) Organization

Name
vim-jp
Email
Website/Blog
http://vim-jp.org/
Location
Japan
Member Since
Sep 14, 2011

Public Repositories (4)

  • vim-jp.github.com

    Last updated

    legend
  • vim

    mirror of vim (experimental)

    Last updated

    legend
  • vimdoc-ja

    A project which translate Vim documents into Japanese.

    Last updated

    legend
  • issues

    有志で既知のバグや要望を検討・管理し、オフィシャルへの還元をしていきます。

    Last updated

    legend

Organization Members (7)

  • h-east (h_east)

    1 Public Repositories, 4 followers

  • koron (MURAOKA Taro)

    13 Public Repositories, 23 followers

  • mattn (mattn)

    202 Public Repositories, 337 followers

  • thinca (thinca)

    35 Public Repositories, 114 followers

  • tyru (tyru)

    110 Public Repositories, 181 followers

  • withgod (withgod)

    11 Public Repositories, 2 followers

  • ynkdir (Yukihiro Nakadaira)

    15 Public Repositories, 11 followers

Markdown Cheat Sheet

Format Text

Headers

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Text styles

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__

*You **can** combine them*

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b

Miscellaneous

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:
> We're living the future so
> the present is our past.

Code Examples in Markdown

Syntax highlighting with GFM

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

Or, indent your code 4 spaces

Here is a Python code example
without syntax highlighting:

    def foo:
      if not bar:
        return true

Inline code for comments

I think you should use an
`<addr>` element here instead.