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?

More than 1 year has passed since last update.

Qiita Markdownの書き方

Last updated at Posted at 2023-05-13

はじめに

Markdown記法の練習がてら,以下を参考に書いてみる.

1.見出しの設定

見出しは#の数で大きさを変更可能

見出し

見出し

見出し

2.コードの挿入

「`」(バッククオテーション)3つでコードをくくる
(※「'」(シングルクオテーション)ではないので注意)

function hello(){
    return "Hello";
}

コード挿入にシンタックスハイライトの追加

```php
function hello(){
return "hello world!";
}
```
のように書くと,以下のようになる
"php"は"python"でも"html"でも何でも可

Bash, C#(cs), C++(cpp), CSS, Diff, HTML, XML, Ini, Java, Javascript, PHP, Perl, Python, Ruby, SQL, 1C, AVR Assembler(avrasm), Apache, Axapta, CMake, DOS .bat(dos), Delphi, Django, Erlang, Erlang, REPL, Go, Haskell, Lisp, Lua, MEL, Nginx, Objective C(objectivec), Parser3, Python, profile, Scala, Smalltalk, TeX, VBScript, VHDL, Vala

function hello(){
    return "hello world!";
}

3.リンクの挿入

・直張りタイプ

URL

・URLにテキストを埋め込むタイプ

[テキスト名](URL)

テキスト名

4.引用

0
0
1

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?