Uploaded image for project: 'CMS'
  1. CMS
  2. CMS-3769

The <strong> entered in the inline editor should make a balise <strong>

    • Icon: Improvement Improvement
    • Resolution: Fixed
    • Icon: Major Major
    • 3.4.2, 3.5
    • 3.4
    • None
    • None

      same with <i>

      In the cms/plugins/cms/stylesheets/io/docbook2html.xsl

          <xsl:template match="docbook:emphasis">
              <xsl:choose>
                  <xsl:when test="@role='strong'">
                      <b><xsl:apply-templates/></b>
                  </xsl:when>
                  <xsl:otherwise>
                      <i><xsl:apply-templates/></i>
                  </xsl:otherwise>
              </xsl:choose>
          </xsl:template>
      

      should be

          <xsl:template match="docbook:emphasis">
              <xsl:choose>
                  <xsl:when test="@role='strong'">
                      <strong><xsl:apply-templates/></strong>
                  </xsl:when>
                  <xsl:otherwise>
                      <em><xsl:apply-templates/></em>
                  </xsl:otherwise>
              </xsl:choose>
          </xsl:template>
      

            Unassigned Unassigned
            lperier Laurence Perier
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: