Creates a HtmlDoc object corresponding to a static HTML page (without model dependency) that emits HTML to an output Appendable @param out The output Appendable
(Appendable out)
| 133 | * @param out The output Appendable |
| 134 | */ |
| 135 | public static HtmlDoc doc(Appendable out) { |
| 136 | return new HtmlDoc(new HtmlDocVisitor(out, true)); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Creates a HtmlView corresponding to a dynamic HtmlPage with a model and default indentation on. |
no outgoing calls