0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Markdown メモ

Posted at

はじめに

Markdownで忘れがちの記述や使ったことないけど面白そうなものをまとめました。

強調

テキスト

**テキスト**

テーブル

1 2 3

下記実行後に表示される「テーブル挿入」を押下

3x4

x(エックス)。掛けるではない。

aaaa bbbb cccc
a b c
a b c
a b c
|aaaa|bbbb|cccc|
|:-|:-:|-:|
|a|b|c|
|a|b|c|
|a|b|c|

Diff

- System.out.println("Hello");
+ System.out.println("World");
``` diff_java
- System.out.println("Hello");
+ System.out.println("World");
```

コードブロック

チルダで記載したmdはダブルクオーテで囲むことでコードブロック内に下記のように表示可能。逆でも可能

``` md

```
~~~ md

~~~

コードスパン

test
#000000
rgb(0,0,0)

`test`
`#000000`
`rgb(0,0,0)`

note

a
b

a
b

a
b

:::note info
a
b
:::

:::note warn
a
b
:::

:::note alert
a
b
:::

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?