2

When I Export a notebook to HTML, Mathematica renders each Manipulate GUI as an object that requires the CDF browser plugin. For example, this notebook:

enter image description here

... renders to this webpage:

enter image description here

How can I tell Export to convert the Manipulate cells to images instead of CDFs?

Perhaps ConversionRules is needed, as in this answer?

Thanks.

Kuba
  • 136,707
  • 13
  • 279
  • 740
ConvexMartian
  • 1,641
  • 11
  • 18

1 Answers1

3

You need to specify ManipulateOutput option:

Export["...filename", EvaluationNotebook[], "ManipulateOutput" -> "PNG"]

Please see more details about HTML format if you need to tweak it.

Stitch
  • 4,205
  • 1
  • 12
  • 28