Search code examples
htmlpug

How to add br tag with Jade HTML


I need add br tag but this not working.

table
    tbody
        td Juan Perez
        td 01 33 4455 6677
        td Av José Vasconcelos 804-A Pte. 
            br Col. Los Sabinos,CP. 66220, San Pedro, N.L.

Solution

  • Put the text on a new line with a preceding |:

    table
      tbody
        tr
          td Juan Perez
          td 01 33 4455 6677
          td Av José Vasconcelos 804-A Pte.
            br
            | Col. Los Sabinos,CP. 66220, San Pedro, N.L.
    

    You could also place both text nodes on new lines to improve readability as well:

    table
      tbody
        tr
          td Juan Perez
          td 01 33 4455 6677
          td
            | Av José Vasconcelos 804-A Pte.
            br
            | Col. Los Sabinos,CP. 66220, San Pedro, N.L.
    

    Output:

    <table>
      <tbody>
        <tr>
          <td>Juan Perez</td>
          <td>01 33 4455 6677</td>
          <td>Av José Vasconcelos 804-A Pte.<br/>Col. Los Sabinos,CP. 66220, San Pedro, N.L.</td>
        </tr>
      </tbody>
    </table>