Fix markdown issue with angle brackets.

git-svn-id: https://svn.apache.org/repos/asf/incubator/knox/trunk@1543114 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/books/0.3.0/book_troubleshooting.md b/books/0.3.0/book_troubleshooting.md
index 5adffc4..f5f9ce2 100644
--- a/books/0.3.0/book_troubleshooting.md
+++ b/books/0.3.0/book_troubleshooting.md
@@ -144,8 +144,8 @@
 #### Resolution
 
 Create the home directory for the user on HDFS.
-The home directory is typically of the form /user/<userid> and should be owened by the user.
-user 'hdfs" can create such a directory and make the user owner of the directory.
+The home directory is typically of the form `/user/{userid}` and should be owned by the user.
+user 'hdfs' can create such a directory and make the user owner of the directory.
 
 
 ### Job Submission Issues - OS Accounts ###
diff --git a/books/static/workflow-configuration.xml b/books/static/workflow-configuration.xml
deleted file mode 100644
index 4bec24e..0000000
--- a/books/static/workflow-configuration.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one or more
-   contributor license agreements.  See the NOTICE file distributed with
-   this work for additional information regarding copyright ownership.
-   The ASF licenses this file to You under the Apache License, Version 2.0
-   (the "License"); you may not use this file except in compliance with
-   the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
--->
-
-<configuration>
-    <property>
-        <name>user.name</name>
-        <value>default</value>
-    </property>
-    <property>
-        <name>nameNode</name>
-        <value>default</value>
-    </property>
-    <property>
-        <name>jobTracker</name>
-        <value>default</value>
-    </property>
-    <property>
-        <name>inputDir</name>
-        <value>/user/guest/example/input</value>
-    </property>
-    <property>
-        <name>outputDir</name>
-        <value>/user/guest/example/output</value>
-    </property>
-    <property>
-        <name>oozie.wf.application.path</name>
-        <value>/user/guest/example</value>
-    </property>
-</configuration>
diff --git a/books/static/workflow-definition.xml b/books/static/workflow-definition.xml
deleted file mode 100644
index ef9467e..0000000
--- a/books/static/workflow-definition.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one or more
-   contributor license agreements.  See the NOTICE file distributed with
-   this work for additional information regarding copyright ownership.
-   The ASF licenses this file to You under the Apache License, Version 2.0
-   (the "License"); you may not use this file except in compliance with
-   the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
--->
-
-<workflow-app xmlns="uri:oozie:workflow:0.2" name="wordcount-workflow">
-    <start to="root-node"/>
-    <action name="root-node">
-        <java>
-            <job-tracker>${jobTracker}</job-tracker>
-            <name-node>${nameNode}</name-node>
-            <main-class>org.apache.hadoop.examples.WordCount</main-class>
-            <arg>${inputDir}</arg>
-            <arg>${outputDir}</arg>
-        </java>
-        <ok to="end"/>
-        <error to="fail"/>
-    </action>
-    <kill name="fail">
-        <message>Java failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
-    </kill>
-    <end name="end"/>
-</workflow-app>