WithOutputSelf configures the Node to print the root node itself
()
| 75 | |
| 76 | // WithOutputSelf configures the Node to print the root node itself |
| 77 | func WithOutputSelf() OutputOption { |
| 78 | return func(oc *outputConfiguration) { |
| 79 | oc.printSelf = true |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | // WithEmptyTagSupport empty tags should be written as <empty/> and |
| 84 | // not as <empty></empty> |
no outgoing calls
searching dependent graphs…