public static void main()

in src/main/java/ConvertHtml2Adoc.java [45:52]


	public static void main(String[] args) throws IOException {
		Path srcPath = basePath.resolve(input);

		String executionPath = System.getProperty("user.dir");
		System.out.println(executionPath);

		Files.find(srcPath, 10, (p, a) -> { return true; }).forEach(p -> convert(p.toFile()));
	}