引用の中に引用元のURLを右寄せで表示する。

はじめに

学習内容を調べる際に他の方のサイトなどを拝見するため、その引用元を記載するため調べた

方法

1.デザインCSSに以下のコードを追記する。

.entry-content blockquote cite { 
    display: block; 
    text-align: right; 
}

f:id:ham4690:20200220221335p:plain
記事管理画面より左にあるデザインを選択
f:id:ham4690:20200220220917p:plain
手順2
f:id:ham4690:20200220220935p:plain
手順3

2.引用したい部分で以下の様に記述

> this is apple.
> <cite>[Google](https://google.com "google")</cite>

すると,

this is apple google