From e3d6141747828d6e10932ac4982ff76237d71f3d Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 18 Feb 2003 07:14:14 +0000 Subject: Fix svn path=/trunk/mono/; revision=11680 --- web/documentation | 58 +++++++++++++++++++++++++++---------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'web') diff --git a/web/documentation b/web/documentation index 4bf6aab6760..2d207003e58 100644 --- a/web/documentation +++ b/web/documentation @@ -110,18 +110,18 @@ As you document Gtk# you will have a number of tags that you can use inside the summary and remarks sections, these are: -_Pre_ - <para> </para> +
        
+<para> </para>
 
Used to separate paragraphs.
  
-        <paramref name="param_name"/>
+<paramref name="param_name"/>
 
Used to reference a formal parameter to a function.
  
-        <see cref="T:SomeTypeName"/>
+<see cref="T:SomeTypeName"/>
 
Use this to reference a type, this will include an hyper link to the page for type SomeTypeName. @@ -129,11 +129,11 @@ _Pre_ For example, to reference "System.Enum", do:
-        	<see cref="T:System.Enum"/>
+	<see cref="T:System.Enum"/>
 
-        <see cref="P:SomeTypeName.Property"/>
+<see cref="P:SomeTypeName.Property"/>
 
Use this to reference a property, this will include an hyper link to the page for the property `Property' of type `SomeTypeName'. @@ -141,11 +141,11 @@ _Pre_ For example, to reference the BaseType property in System.Type, do:
-        	<see cref="P:System.Type.BaseType"/>
+	<see cref="P:System.Type.BaseType"/>
 
-        <see cref="M:SomeTypeName.Method(type,type)"/>
+<see cref="M:SomeTypeName.Method(type,type)"/>
 
Use this to reference a method, this will include an hyper link to the page for the method `Method' of type `SomeTypeName'. @@ -153,27 +153,27 @@ _Pre_ For example, to reference the ToString method in System.Object, do:
-        	<see cref="M:System.Object.ToString()"/>
+	<see cref="M:System.Object.ToString()"/>
 
-        <see langword="keywrod"/>
+<see langword="keyword"/>
 
Use this to link to a keyword in the C# language, for example to link to `true', do:
-        		<see langword="true"/>
+	<see langword="true"/>
 
-        <example> ... </example>
+<example> ... </example>
 
Use example to insert an example. The example can contain explanatory text and code.
-        <code lang="C#">.. </code>
+<code lang="C#">.. </code>
 
Use this to provide a sample C# program, typically used @@ -187,38 +187,38 @@ _Pre_ You can link to an example like this:
-        	<code lang="C#" source="file.cs"> </code>
+	<code lang="C#" source="file.cs"> </code>
 
-        <item>
+<item>
 
-        <list type="bullet">  </list>
+<list type="bullet">  </list>
 
Use this to create lists. Lists contains <item> elements
-        <list type="table"> </lits>
-                    <listheader>
-                      <term>YOUR FIRST COLUMN</term>
-                      <description>YOUR DESCRIPTION</description>
-                    </listheader>
+<list type="table"> </lits>
+            <listheader>
+              <term>YOUR FIRST COLUMN</term>
+              <description>YOUR DESCRIPTION</description>
+            </listheader>
 
For two-column tables. Inside use:
-        	<item>
-        		<term>First</term>
-        		<description>First descritpion</description>
-        	</item>
-        	<item>
-        		<term>Second</term>
-        		<description>Second descirption</description>
-        	</item>
+<item>
+	<term>First</term>
+	<description>First descritpion</description>
+</item>
+<item>
+	<term>Second</term>
+	<description>Second descirption</description>
+</item>
 
** Words of warning. -- cgit v1.2.3