
[2016/10/15]『➌ プログラム言語とpreタグの書き方』追加
[2016/10/15]テーマ毎、フォント毎に使用している<pre>タグを表記
[2016/10/09]本記事公開
こんにちは。kei(@boot_kt)です。
プログラムコードを表示するためにWordPressプラグインとしてCrayon Syntax Highlighterを使っています。
しかし選択できるテーマとフォントがたくさんあってどれがどういう表示になるか分からなかったので全部出してみました。
- WordPress
- Crayon Syntax Highlighter Ver.2.8.4
- テーマ全種類の表示
- フォント全種類の表示
- プログラム言語全種類の一覧
Contents
- ➊ テーマの比較
- 1c Kod
- 1c Zapros
- 809finest
- Ado
- Amity
- Arduino Ide
- Bncplusplus
- Capacitacionti
- Cg Cookie
- Cisco Router
- Classic
- Coda Special Board
- Coy
- Dark Terminal
- Eclipse
- Epicgeeks
- Familiar
- Feeldesign
- Flatui Light
- Github
- Idle
- Inlellij Idea
- Iris Vfx
- Kaderu
- Kayote
- Light Abite
- Mirc Dark
- Mm Dark Blue
- Monokai
- Neon
- Obsidian
- Obsidian Light
- Onderka15
- Orange Code
- Plain White
- Powershell
- Powershell Ise
- Prism Like
- Pspad
- Qtcreator
- Raygun
- Secrets Of Rock
- Shell Default
- Solarized Dark
- Solarized Light
- Son Of Obsidian
- Ssms2012
- Sublime Text
- Terminal
- Tomorrow
- Tomorrow Night
- Turnwall
- Twilight
- Visual Assist
- Vs2012
- Vs2012 Black
- X3info
- Xcode
- ➋ フォントの比較
- ➌ プログラム言語と<pre>タグの書き方
- 参考書籍
➊ テーマの比較
- フォントはAdobe Source Sans固定
- 言語はRuby
- 19-21行はマーク行
1c Kod
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:1c-kod font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="1cKod">
<pre>
1c Zapros
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:1c-zapros font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="1c Zapros">
<pre>
809finest
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:809finest font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="809finest">
<pre>
Ado
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:ado font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Ado">
<pre>
Amity
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:amity font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Amity">
<pre>
Arduino Ide
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:arduino-ide font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Arduino Ide">
<pre>
Bncplusplus
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:bncplusplus font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Bncplusplus">
<pre>
Capacitacionti
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:capacitacionti font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Capacitacionti">
<pre>
Cg Cookie
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:cg-cookie font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Cg Cookie">
<pre>
Cisco Router
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:cisco-router font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Cisco Router">
<pre>
Classic
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:classic font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Classic">
<pre>
Coda Special Board
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:coda-special-board font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Coda Special Board">
<pre>
Coy
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:coy font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Coy">
<pre>
Dark Terminal
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:dark-terminal font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Dark Terminalq">
<pre>
Eclipse
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:eclipse font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Eclipse">
<pre>
Epicgeeks
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:epicgeeks font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Epicgeeks">
<pre>
Familiar
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:familiar font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Familiar">
<pre>
Feeldesign
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:feeldesign font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Feeldesign">
<pre>
Flatui Light
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:flatui-light font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Flatui Light">
<pre>
Github
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:github font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Github">
<pre>
Idle
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:idle font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Idle">
<pre>
Inlellij Idea
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:inlellij-idea font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Inlellij Idea">
<pre>
Iris Vfx
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:iris-vfx font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Iris Vfx">
<pre>
Kaderu
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:kaderu font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Kaderu">
<pre>
Kayote
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:kayote font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Kayote">
<pre>
Light Abite
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:light-abite font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Light Abite">
<pre>
Mirc Dark
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:mirc-dark font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Mirc Dark">
<pre>
Mm Dark Blue
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:mm-dark-blue font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Mm Dark Blue">
<pre>
Monokai
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:monokai font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Monokai">
<pre>
Neon
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:neon font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Neon">
<pre>
Obsidian
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:obsidian font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Obsidian">
<pre>
Obsidian Light
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:obsidian-light font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Obsidian Light">
<pre>
Onderka15
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:onderka15 font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Onderka15">
<pre>
Orange Code
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:orange-code font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Orange Code">
<pre>
Plain White
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:plain-white font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Plain White">
<pre>
Powershell
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:powershell font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Powershell">
<pre>
Powershell Ise
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:powershell-ise font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Powershell Ise">
<pre>
Prism Like
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:prism-like font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Prism Like">
<pre>
Pspad
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:pspad font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Pspad">
<pre>
Qtcreator
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:qtcreator font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Qtcreator">
<pre>
Raygun
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:raygun font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Raygun">
<pre>
Secrets Of Rock
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:secrets-of-rock font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Secrets Of Rock">
<pre>
Shell Default
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:shell-default font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Shell Default">
<pre>
Solarized Dark
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:solarized-dark font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Solarized Dark">
<pre>
Solarized Light
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:solarized-light font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Solarized Light">
<pre>
Son Of Obsidian
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:son-of-obsidian font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Son Of Obsidian">
<pre>
Ssms2012
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:ssms2012 font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Ssms2012">
<pre>
Sublime Text
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:sublime-text font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Sublime Text">
<pre>
Terminal
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:terminal font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Terminal">
<pre>
Tomorrow
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:tomorrow font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Tomorrow">
<pre>
Tomorrow Night
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:tomorrow-night font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Tomorrow Night">
<pre>
Turnwall
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:turnwall font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Turnwall">
<pre>
Twilight
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:twilight font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Twilight">
<pre>
Visual Assist
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:visual-assist font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Visual Assist">
<pre>
Vs2012
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Vs2012">
<pre>
Vs2012 Black
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012-black font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Vs2012 Black">
<pre>
X3info
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:x3info font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="X3info">
<pre>
Xcode
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:xcode font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Xcode">
<pre>
➋ フォントの比較
- テーマはVs2012固定
- 言語はRuby
- 19-21行はマーク行
Adobe Source Sans
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:adobe-source-sans lang:ruby mark:19-21 decode:true " title="Adobe Source Sans">
<pre>
Arial
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:arial lang:ruby mark:19-21 decode:true " title="Arial">
<pre>
Consolas
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:consolas lang:ruby mark:19-21 decode:true " title="Consolas">
<pre>
Courier New
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:courier-new lang:ruby mark:19-21 decode:true " title="Courier New">
<pre>
Droid Sans Mono
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:droid-sans-mono lang:ruby mark:19-21 decode:true " title="Droid Sans Mono">
<pre>
Inconsolata
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:inconsolata lang:ruby mark:19-21 decode:true " title="Inconsolata">
<pre>
Liberation Mono
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:liberation-mono lang:ruby mark:19-21 decode:true " title="Liberation Mono">
<pre>
Monaco
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:monaco lang:ruby mark:19-21 decode:true " title="Monaco">
<pre>
Monospace
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:monospace lang:ruby mark:19-21 decode:true " title="Monospace">
<pre>
Sourcecodepro
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:sourcecodepro lang:ruby mark:19-21 decode:true " title="Sourcecodepro">
<pre>
Tahoma
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:tahoma lang:ruby mark:19-21 decode:true " title="Tahoma">
<pre>
Times
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:times lang:ruby mark:19-21 decode:true " title="Times">
<pre>
Ubuntu Mono
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:ubuntu-mono lang:ruby mark:19-21 decode:true " title="Ubuntu Mono">
<pre>
Verdana
class BookInfo
attr_accessor :name, :price, :author, :pubdate
#--------------------------------
# イニシャライズ(コンストラクタ)
#--------------------------------
# No、書籍名、値段、著者名、発売日
def initialize( name, price, author, pubdate )
@name = name
end
#--------------------------------
# setter
#--------------------------------
def name=(value)
@name = value
end
#--------------------------------
# getter
#--------------------------------
def name
return @name
end
end
<pre class="theme:vs2012 font:verdana lang:ruby mark:19-21 decode:true " title="Verdana">
<pre>
➌ プログラム言語と<pre>タグの書き方
| プログラム言語 | <pre>タグへの記述 |
|---|---|
| Default | lang:default |
| 1C (3anpoc) | lang:1c-zapros |
| 1C (KoД) | lang:1c-kod |
| ABAP | lang:abap |
| ActionScript | lang:as |
| ADA | lang:ada |
| AmigaDOS | lang:amigados |
| Apache | lang:apache |
| AppleScript | lang:applescript |
| Arduino | lang:arduino |
| ASP | lang:asp |
| Assembly (x86) | lang:asm |
| AutoIt | lang:autoit |
| C | lang:c |
| C# | lang:c# |
| C++ | lang:c++ |
| Clojure | lang:clojure |
| CoffeeScript | lang:coffee |
| CSS | lang:css |
| Delphi/Pascal | lang:delphi |
| Delphi/WebScript/DWS | lang:dws |
| diff | lang:diff |
| Erlang | lang:erlang |
| Fabric Engine KL | lang:kl |
| Go | lang:go |
| Haskell | lang:haskell |
| INI | lang:ini |
| Inventor iLogic | lang:ilogic |
| Java | lang:java |
| JavaScript | lang:js |
| LESS | lang:less |
| Lisp | lang:lisp |
| Lua | lang:lua |
| MATLAB | lang:matlab |
| MEL | lang:mel |
| Microsoft Registry | lang:reg |
| MIVA Script | lang:miva |
| Monkey | lang:monkey |
| MS DOS | lang:batch |
| MySQL | lang:mysql |
| Objective-C | lang:objc |
| OCaml | lang:ocaml |
| Oracle PL/SQL | lang:plsql |
| Papyrus | lang:papyrus |
| Perl | lang:perl |
| PgSQL | lang:pgsql |
| PHP | lang:php |
| PowerShell | lang:ps |
| Python | lang:python |
| R | lang:r |
| Ruby | lang:ruby |
| Rust | lang:rust |
| Sass | lang:sass |
| Scala | lang:scala |
| Scheme | lang:scheme |
| Shell | lang:sh |
| Swift | lang:swift |
| TeX | lang:tex |
| Transact-SQL | lang:tsql |
| Vim | lang:vim |
| Visual Basic | lang:vb |
| Visual Basic .NET | lang:vbnet |
| XHTML | lang:xhtml |
| YAML | lang:yaml |
| ZSH | lang:zsh |
参考書籍
コメントを残す