html-convert/src/main/java/org/netbeans/tools/tutorials/CustomAsciiDocDocumentBuilder.java [215:228]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        protected void emitContent(String content) throws IOException {
            super.emitContent("\n");
            if (attributes != null && attributes.getId() != null) {
                super.emitContent("[[" + attributes.getId() + "]]\n");
            }
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < level; i++) {
                sb.append("=");
            }
            sb.append(" ");
            sb.append(content.replaceAll("\n", " "));
            sb.append("\n\n");
            super.emitContent(sb.toString());
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tutorials-convert/src/main/java/org/netbeans/tools/tutorials/CustomAsciiDocDocumentBuilder.java [280:293]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		protected void emitContent(String content) throws IOException {
			super.emitContent("\n");
			if (attributes != null && attributes.getId() != null) {
				super.emitContent("[[" + attributes.getId() + "]]\n");
			}
			StringBuilder sb = new StringBuilder();
			for (int i = 0; i < level; i++) {
				sb.append("=");
			}
			sb.append(" ");
			sb.append(content.replaceAll("\n", " "));
			sb.append("\n\n");
			super.emitContent(sb.toString());
		}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



