Sfoglia il codice sorgente

Undo block macro test.

mitm 7 anni fa
parent
commit
39d99f9a97
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      build.gradle

+ 3 - 3
build.gradle

@@ -35,15 +35,15 @@ asciidoctor {
 		'orgname':'jMonkeyEngine'
 	options header_footer: true,
 		template_dirs: [file('src/templates/slim').absolutePath]
-
+/*
 	extensions {
 		block_macro(name: 'iframe') {
 			parent, target, attributes ->
-			String content = +++<iframe src="${target}"></iframe>+++;
+			String content = """<iframe src="${target}"></iframe>""";
 			createBlock(parent, "pass", [content], attributes, config);
 		}
 	}
-
+*/
 }
 
 asciidoctor.doLast {