Sha256: 64275ada53efa66406b71bc3b36d3d732dbde0c857d736c887012f174c0b60f8

Contents?: true

Size: 589 Bytes

Versions: 6

Compression:

Stored size: 589 Bytes

Contents

{% case node.type %}
{% when 'emphasis' %}
  <em>{{ node.text }}</em>
{% when 'strong' %}
  <strong>{{ node.text }}</strong>
{% when 'monospaced' %}
  <code>{{ node.text }}</code>
{% when 'superscript' %}
  <sup>{{ node.text }}</sup>
{% when 'subscript' %}
  <sub>{{ node.text }}</sub>
{% when 'double' %}
  &#8220;{{ node.text }}&#8221;
{% when 'single' %}
  &#8216;{{ node.text }}&#8217;
{% when 'mark' %}
  <mark>{{ node.text }}</mark>
{% when 'asciimath' %}
  \\${{ node.text }}\\$
{% when 'latexmath' %}
  \\({{ node.text }}\\)
{% else %}
  <span>{{ node.text }}</span>
{% endcase %}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
asciidoctor-htmlbook-0.0.6 templates/inline_quoted.html
asciidoctor-htmlbook-0.0.5 templates/inline_quoted.html
asciidoctor-htmlbook-0.0.4 templates/inline_quoted.html
asciidoctor-htmlbook-0.0.3 templates/inline_quoted.html
asciidoctor-htmlbook-0.0.2 templates/inline_quoted.html
asciidoctor-htmlbook-0.0.1 templates/inline_quoted.html