You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/08/06 08:58:24 UTC

[royale-docs] branch master updated: wrong mxml highlight notation

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 052f63a  wrong mxml highlight notation
052f63a is described below

commit 052f63ad3fa15af8214503023872aa48f565dc6b
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Aug 6 10:58:06 2020 +0200

    wrong mxml highlight notation
---
 features/item-renderers.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/features/item-renderers.md b/features/item-renderers.md
index 8f54b18..3f8e65d 100644
--- a/features/item-renderers.md
+++ b/features/item-renderers.md
@@ -30,7 +30,7 @@ Collections of data are composed by objects or items. Several components in Roya
 
 Although Item Renders use to be declared in a separate file (and this is the recommended way), you can also declare an item renderer inline for convenience:
 
-´´´mxml
+```mxml
 <j:DataContainer width="100%" labelField="name" dataProvider="{dataList}">
     <j:beads>
         <j:Viewport clipContent="false"/>
@@ -67,7 +67,7 @@ Although Item Renders use to be declared in a separate file (and this is the rec
         </fx:Component>
     </j:itemRenderer>
 </j:DataContainer>
-´´´
+```
 
 ## Examples