Skip to content

Instantly share code, notes, and snippets.

Atomの設定をsync-settingsで共有

@mignonstyle
mignonstyle / Method of Travis CI and Unit Test.md
Last active June 30, 2017 14:10
Method of Travis CI and Unit Test
@mignonstyle
mignonstyle / git-command-cheatsheet.md
Last active February 18, 2023 12:45
Git and GitHub command cheatsheet

Git and GitHub command cheat sheet

init

Creating a local repository

$ git init
@mignonstyle
mignonstyle / .editorconfig
Last active November 23, 2016 16:43
.editorconfig
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
# WordPress Coding Standards
# https://make.wordpress.org/core/handbook/coding-standards/
# Author: Mignon Style
# version: 1.1
root = true
@mignonstyle
mignonstyle / .gitignore
Last active February 11, 2020 01:21
.gitignore configurations
# gitignore
# Author: Mignon Style
# version: 1.0
# Exclude any PSD/AI source
#*.psd
#*.ai
# composer
composer.phar
@mignonstyle
mignonstyle / markdown-cheatsheet.md
Last active April 23, 2024 10:53
Markdown記法 チートシート

Block Elements ## Headers 見出し 先頭に#をレベルの数だけ記述します。 ```

見出し1

見出し2

見出し3

見出し4

見出し5
見出し6
## 見出し2
### 見出し3
#### 見出し4
##### 見出し5
###### 見出し6 ## Block 段落 空白行を挟むことで段落となります。 ```
段落1
(空行)
段落2
``` 段落1 段落2 ## Br 改行 改行の前に半角スペース` `を2つ記述します。 ```
hoge
fuga(スペース2つ)
piyo
``` hoge
fuga piyo ## Blockquotes 引用 先頭に`>`を記述します。ネストは`>`を多重に記述します。 ```
> 引用 > 引用
>> 多重引用
``` > 引用 > 引用
>> 多重引用 ## Code コード `` `バッククオート` `` 3つ、あるいはダッシュ`~`3つで囲みます。 ```
print 'hoge'
``` ```
print 'hoge'
``` ### インラインコード `` `バッククオート` `` で単語を囲むとインラインコードになります。 ```
これは `インラインコード`です。
``` これは `インラインコード`です。 ## pre 整形済みテキスト 半角スペース4個もしくはタブで、コードブロックをpre表示できます ``` class Hoge def hoge print 'hoge' end end
``` class Hoge def hoge print 'hoge' end end ## Hr 水平線 アンダースコア`_` 、アスタリスク`*`、ハイフン`-`などを3つ以上連続して記述します。 ```
hoge
***
hoge
___
hoge
---
``` hoge
***
hoge
___
hoge
--- # Lists ## Ul 箇条書きリスト ハイフン`-`、プラス`+`、アスタリスク`*`のいずれかを先頭に記