Weave doctype = "md2html" without building figure sub-directory?

When using function weave of Weave.jl to build an Html file from a Julia markdown file, such as:

weave(“mypage.jmd”; out_path = my_out_path, doctype = “md2html”)

the function automtically creates a sub-directory (in the example above, under my_out_path) containing the figures (png files), while the created html file (in the example above, mypage.html) is already standalone (contains the figures).

Is it possible to specify in the function to not create this sub-directory? (May be I missed something but I did not find such possibility in the documentation)