From c16c4df4b4b107b74c84c5276ffa78a9d504b885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Sat, 15 Jan 2000 22:01:33 -0800 Subject: [PATCH] moved anchors out of descriptive lists Rev: tutorial/extending.wmml:1.9 --- tutorial/extending.wmml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/tutorial/extending.wmml b/tutorial/extending.wmml index 542cb12aaf..b3af2912d7 100644 --- a/tutorial/extending.wmml +++ b/tutorial/extending.wmml @@ -137,31 +137,36 @@ these before you write Pike extentions. <section title="Basic data types"> First, we must come to know the basic data types pike uses. <dl> +<dt> <anchor name=INT8> <anchor name=INT16> <anchor name=INT32> <anchor name=INT64> -<dt><tt>INT8, INT16, INT32, INT64</tt> -<dd>These are defines which are at least as many bits - as the number suggests. If there is an integer which is - 32 bits on a certain platform, INT32 is guaranteed to be 32 bits. +<tt>INT8, INT16, INT32, INT64</tt> </anchor> </anchor> </anchor> </anchor> +<dd>These are defines which are at least as many bits + as the number suggests. If there is an integer which is + 32 bits on a certain platform, INT32 is guaranteed to be 32 bits. +<dt> <anchor name=INT_TYPE> -<dt><tt>INT_TYPE</tt> -<dd>This is the type Pike uses for integers. Usually 32 bits. +<tt>INT_TYPE</tt> </anchor> +<dd>This is the type Pike uses for integers. Usually 32 bits. +<dt> <anchor name=FLOAT_TYPE> -<dt><tt>FLOAT_TYPE</tt> -<dd>This is the type Pike uses for floats. Usually defined as 'float'. +<tt>FLOAT_TYPE</tt> </anchor> +<dd>This is the type Pike uses for floats. Usually defined as 'float'. +<dt> <anchor name=TYPE_FIELD> -<dt><tt>TYPE_FIELD</tt> +<tt>TYPE_FIELD</tt> +</anchor> <dd>This is a bit field which can be any combination of the flags: <tt>BIT_INT</tt>, <tt>BIT_FLOAT</tt>, @@ -193,7 +198,6 @@ First, we must come to know the basic data types pike uses. <dt><tt>BIT_CALLABLE</tt> <dd>Types that can be used as arguments for apply_svalue. </dl> -</anchor> </dl> </section> -- GitLab