Writes this node to a file.
(Path path)
| 59 | * Writes this node to a file. |
| 60 | */ |
| 61 | public void write(Path path) throws IOException { |
| 62 | Renderer renderer = Renderer.builder().build(); |
| 63 | StringBuilder sb = new StringBuilder(); |
| 64 | render(renderer, sb, 1); |
| 65 | Files.write(path, sb.toString().getBytes()); // what about utf16 support? |
| 66 | } |
| 67 | } |