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 3 years have passed since last update.

HTML Bad character % after <. Probable cause: Unescaped <. Try escaping it as &lt;. エラーについて

Last updated at Posted at 2021-06-28

###エラーの経緯
rubyを埋め込んだerbファイルのHTMLを構文チェックしたところ、エラーになりました。

エラー内容

Bad character % after <. Probable cause: Unescaped <. Try escaping it as &lt;.

特殊記号がエスケープできていないから &it を試してね。
ということでした。

###エラー部分の記述

          <tr>
            <td>会社名</td>
            <td>
              <% c_name = params['company'] %> <!-- この部分が構文エラー -->
              <%= c_name %>   <!-- この部分が構文エラー -->
            </td>
          </tr>

今回はrubyを埋め込むerbファイルをそのまま構文チェックしていたので、「ページのソースを表示」からそのページのHTMLを取得する必要がありました。

###よく使う特殊記号のエスケープ

 &amp;(アンパサンド)                    
    <br />
    &lt;(小なり)
    <br />
    &gt;(大なり)
    <br />
    &quot;(ダブルクォーテーション)
    <br />
    &nbsp;(空白)
    <br />
    &copy;(コピーライト)
0
0
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
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?