You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by no...@apache.org on 2011/09/10 01:17:22 UTC

svn commit: r1167392 - /aries/site/trunk/content/modules/blueprint.mdtext

Author: not
Date: Fri Sep  9 23:17:22 2011
New Revision: 1167392

URL: http://svn.apache.org/viewvc?rev=1167392&view=rev
Log:
Seeing if we can get syntax highlighting on java code.

Modified:
    aries/site/trunk/content/modules/blueprint.mdtext

Modified: aries/site/trunk/content/modules/blueprint.mdtext
URL: http://svn.apache.org/viewvc/aries/site/trunk/content/modules/blueprint.mdtext?rev=1167392&r1=1167391&r2=1167392&view=diff
==============================================================================
--- aries/site/trunk/content/modules/blueprint.mdtext (original)
+++ aries/site/trunk/content/modules/blueprint.mdtext Fri Sep  9 23:17:22 2011
@@ -1,4 +1,5 @@
 Title: Blueprint
+
 <a name="Blueprint-Blueprint"></a>
 # Blueprint
 
@@ -105,7 +106,7 @@ example, the *class* attribute specifies
 instantiate. The Blueprint Container will create the *Account* object by
 passing *1* as the argument to the constructor. 
 
-
+   :::java
    public class Account {      
        public Account(long number) {
 	  ...