I'm giving dyndoc a whirl and am running into issues. This code:
Looks fine in terms of the output it produces in Stata, but the HTML output looks like the below when I open it in a browser (either explorer or chrome -- sorry for the ginormous size).
Any thoughts? I'm not sure if this is suggestive of a broader bugginess that I'm going to run into, such that it might be better to wait than invest time in using to create documents presently.

--Jeremy
Code:
<<dd_do: quietly>> use ..\wls_usethis, clear <</dd_do>> <<dd_do>> sum occ_occed_max if rtype == "g" // graduates sum occ_occed_max if rtype == "s" & female == 0 // siblings sum occ_occinc_max if rtype == "g" // graduates sum occ_occinc_max if rtype == "s" & ed_lt12 != 0 // siblings sum occ_warhaus_max if rtype == "g" // graduates sum occ_warhaus_max if rtype == "s" & ed_lt12 != 0 // siblings <</dd_do>>
Any thoughts? I'm not sure if this is suggestive of a broader bugginess that I'm going to run into, such that it might be better to wait than invest time in using to create documents presently.
--Jeremy
Comment