There is 1 comment.
 
 
Confluence / cid:jira-generated-image-avatar-b600da8f-cf4d-470b-a3af-75e472b1adc0 CONFLUENCE-255 Open

Unknown macro confluence_emoticon after migration from newer confluence versions

 
View issue   ยท   Add comment
 

1 comment

 
cid:jira-generated-image-avatar-ebf7a26e-0312-494c-a732-60781825eff8 Nikita Petrenko on 02/Jul/24 08:44
 
In Confluence 7.x the xml stores emoticons such:


{code:xml}
<object class="BodyContent" package="com.atlassian.confluence.core">
<id name="id">770342941</id>
<property name="body"><![CDATA[<p>Clipboard <ac:emoticon ac:name="blue-star" ac:emoji-shortname=":clipboard:" ac:emoji-id="1f4cb" ac:emoji-fallback="๐Ÿ“‹" /> </p><p>Thought balloon <ac:emoticon ac:name="blue-star" ac:emoji-shortname=":thought_balloon:" ac:emoji-id="1f4ad" ac:emoji-fallback="๐Ÿ’ญ" /> </p><p>Check mark button <ac:emoticon ac:name="blue-star" ac:emoji-shortname=":white_check_mark:" ac:emoji-id="2705" ac:emoji-fallback="โœ…" /> </p>]]></property>
{code}

In Confluence 8.5.6


{code:xml}
<object class="BodyContent" package="com.atlassian.confluence.core">
        <id name="id">1048577</id>
        <property name="body"
            ><![CDATA[<p><br /></p><p>Clipboard <ac:emoticon ac:name="clipboard"
            ac:emoji-id="1f4cb" /> </p><p>Thought balloon <ac:emoticon
            ac:name="thought balloon" ac:emoji-id="1f4ad" /></p><p>Check mark
            button <ac:emoticon ac:name="check mark button" ac:emoji-id="2705"
            />  </p>]]></property
        >
{code}

That is what I have as source code of the page after migration from 8.5.6
(note that cancel icon is recognise after migration) .


{code:none}
\\

Clipboard {{confluence_emoticon ac:name="clipboard" ac:emoji-id="1f4cb"/}}

Thought balloon {{confluence_emoticon ac:name="thought balloon" ac:emoji-id="1f4ad"/}}

Check mark button {{confluence_emoticon ac:name="check mark button" ac:emoji-id="2705"/}}  
{code}