LoginSignup
2
4

More than 5 years have passed since last update.

Qiitaの使い方 II

Last updated at Posted at 2018-05-13

ここで色々まとめられているよ

HTMLも記述できるよ

例えば 文字の色 を変えたりとか

例えば<font color="#ff0000"> **文字の色** </font>を変えたりとか

例えばリンクにタイトルつけたいとか

例えば[リンク](https://qiita.com/glaciesworkspace/items/83de60fadaff2ec156ea "ここにピョコって出てくるアレの事ですよ")にタイトルつけたいとか

ていうか https://www.google.co.jp/ ってURL書くだけでスッとリンクされるっぽい。

別窓で出したい時はやっぱりHTMLで書かなきゃダメっぽいね。
グーグル

<a href="https://www.google.co.jp/" target="_blank">グーグル</a>

絵文字つけられる。ただ使うかなこれ・・・

絵文字チートシート

:pencil: メモ
:paperclip: クリップ。添付してますよ的な
:exclamation: びっくりマーク
:question: クエスチョンマーク
:e-mail: メール

:pencil: メモ
:paperclip: クリップ。添付してますよ的な
:exclamation: びっくりマーク
:question: クエスチョンマーク
:e-mail: メール

コード貼り付けるあれこれ

  • ソースコードをクリップボードにコピペ
  • 半角で`(バッククォート。「@」をShiftキー押しながら入力)を3回+言語指定
  • C#(cs), C++(cpp), css, html, xml, java, javascript, php, perl, python, ruby, sql など
  • 半角で`を3回+ファイル名指定で頭にファイル名が表示
  • 最後`を3回
hello.cs
sing System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class print : MonoBehaviour {

    // Use this for initialization
    void Start () {
        //単純にコンソールで文字を表示させるだけ
        print("ハローワールド");
    }

// Update is called once per frame
    void Update () {        
    }
}
2
4
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
2
4