You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by ja...@apache.org on 2011/10/04 11:03:43 UTC

svn commit: r1178730 - /incubator/rave/site/trunk/content/rave/documentation/custom-gui.mdtext

Author: jasha
Date: Tue Oct  4 09:03:43 2011
New Revision: 1178730

URL: http://svn.apache.org/viewvc?rev=1178730&view=rev
Log:
Fix styling of code sample

Modified:
    incubator/rave/site/trunk/content/rave/documentation/custom-gui.mdtext

Modified: incubator/rave/site/trunk/content/rave/documentation/custom-gui.mdtext
URL: http://svn.apache.org/viewvc/incubator/rave/site/trunk/content/rave/documentation/custom-gui.mdtext?rev=1178730&r1=1178729&r2=1178730&view=diff
==============================================================================
--- incubator/rave/site/trunk/content/rave/documentation/custom-gui.mdtext (original)
+++ incubator/rave/site/trunk/content/rave/documentation/custom-gui.mdtext Tue Oct  4 09:03:43 2011
@@ -24,13 +24,13 @@ There are multiple ways to build your cu
 
 ##2) Add CSS file(s)
 
-Add you own CSS file(s) to the src/main/webapp/css folder of your extension portal module.
+Add you own CSS file(s) to the `src/main/webapp/css` folder of your extension portal module.
 
 ##3) Refer to the new CSS file(s)
 
- - Create a JSP tag file: src/main/webapp/WEB-INF/tags/custom_css.tag
- - Add a link to the stylesheet(s)
+ - Create a JSP tag file: `src/main/webapp/WEB-INF/tags/custom_css.tag`
+ - Add a link to the stylesheet(s) in the custom_css.tag:
 
-    <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
-    <link rel="stylesheet" href="<c:url value="/css/my_custom.css" />" />
+    &lt;%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%&gt;
+    &lt;link rel="stylesheet" href="&lt;c:url value="/css/my_custom.css" /&gt;" /&gt;