Question
How do I create a defintion where the term is multiple word, e.g., Virtual Interface. Hyphenating works and is ugly.
.
- TWiki version: 20001201
- Web server: Apache 1.3.19
- Server OS: SuSE 7.1 Linux, 2.2.18 kernel
jeff.taylor@ieeePLEASENOSPAM.org (TWiki registration busted)
--
TWikiGuest - 30 May 2001
Answer
Enter non breaking spaces like this:
Coka Cola, i.e.
- Sprite
- Soft drink, too sweet
- Coka Cola
- Soft drink, way too sweet
--
PeterThoeny - 01 Jun 2001
This is what I was looking for. Thank you. Jeff Taylor
--
TWikiGuest - 01 Jun 2001
I don't understand, you can't create a
WikiWord with a non-breaking space, the form strips them out. I ended up with a term called
CokanbspCola. Am I misunderstanding your definition of "definition"?
--
MartinCleaver - 04 Jun 2001
The original question was not very clear, but it is just about doing a definition-style list, using the syntax:
Something: its definition
in order to get:
- Something
- its definition
The question was, what if 'something' is actually two words - the answer is to use
to glue the words together with a non-breaking space HTML entity.
--
RichardDonkin - 04 Jun 2001
I would create a glossary as follows:
1) Create a page with the name of the full term "ApplicationControlBroker"
%STARTINCLUDE %
*ApplicationControlBroker*
short description goes here
%STOPINCLUDE %
long description goes here
2) Create a page called ACB
ACB: See ApplicationControlBroker
3) Add an entry in the glossary
<TR>
<TD> ACB </TD> <TD>%INCLUDE{ApplicationControlBroker} % </TD>
</TR>
This will then appear as:
| ACB |
ApplicationControlBroker short description goes here. |
You can then click on ApplicationControlBroker to get to the long definition.
(PS. Remove the space before the trailing % to enable the desired effect)
--
MartinCleaver - 05 Jun 2001