0
1

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.

Haml(ハムル)入門【環境構築と基本的な書き方】

Last updated at Posted at 2023-03-10

Hamlとは

Hamlは、HTMLをより簡潔かつ読みやすくするためのマークアップ言語です。

環境構築とHaml変換

rubyがインストール済みか確認

$ ruby -v

gemを最新版にアップデート

$ sudo gem update --syste

hamlのインストール

$ sudo gem install haml

hamlのバージョンを確認

$ haml version

hamlをhtmlに変換

$ haml render index.haml > index.html

Hamlの書き方

要素

%要素
%html

属性

%要素{:属性 =>"値" }
%要素(属性="値")

%html{:lang =>"ja" }
%html(lang="ja")

コメント

/ コメントテキスト

haml内のみのコメント

-# コメントテキスト

参考サイト

公式サイト

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?