Next Previous Up Top Contents Index

WebMaker User Guide

12.6.4 Default actions for the paragraph rule elements

For Heading paragraph rules, if no actions are provided, the default action is:

write(*,heading(1,concatenate(number()," ",text())));  }

For List type paragraph rules, if Kind Bullet or Kind Number is specified, the default action is:

{  write(*,listitem(text()));  }

For List type paragraph rules, if Kind Glossary is specified, the default action is:

{
  write(*,glossterm(text(current,1,1)));
  write(*,glossdescription(text(current,2,*)));
}

For Normal type paragraph rules, if Context Preformatted is not specified, the default action is:

{  write(*,paragraph(text()));  }

For Normal type paragraph rules, if Context Preformatted is specified, the default action is:

{  write(*,text());  }