MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

Fwd: Re: HTMLSave and Heading

  • To: mathgroup at smc.vnet.net
  • Subject: [mg34374] Fwd: Re: [mg34207] HTMLSave and Heading
  • From: Dale Horton <daleh at wolfram.com>
  • Date: Fri, 17 May 2002 06:30:59 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Sorry for the typo. That should be

section1counter = 1;
numeqcounter = 0;
Export["file.html", nb, "HTML",
     ConversionOptions -> {"MarkupRules" -> {
            "Section1" :> {"<h2>"<>ToString[section1counter++]<>".", "</h2>"},
            "NumberedEquation" :> {setnumeq[numeqcounter++]; "<p>", "</p>"}
}}];
SetOptions[$FrontEnd, CounterAssignments -> {}]

>In[3]:=
>section1counter=1;
>numeqcounter=0;
>Export["file.html",nb,
>     ConversionOptions->{"MarkupRules"->{
>           "Section1":>{"<h2>"<>ToString[section1counter++]<>"."</h2>"},
>           "NumberedEquation":>{setnumeq[numeqcounter++];"<p>", "</p>"}
>}}];
>SetOptions[$FrontEnd, CounterAssignments->{}]

-Dale



  • Prev by Date: silly newbie questions
  • Next by Date: Re: Does Mathematica calculate really so long?
  • Previous by thread: Re: HTMLSave and Heading
  • Next by thread: Q: Displaying Current time/date in Page headers