Package br.com.caelum.tubaina.util

Examples of br.com.caelum.tubaina.util.SimpleCommandExecutor


    private CodeTag code;
    private GistResultRetriever retriever;

    public GistTag(Indentator i, GistResultRetriever retriever) {
        this.code = new CodeTag(i, new SyntaxHighlighter(new SimpleCommandExecutor(), CodeOutputType.LATEX, new CodeCache(CodeOutputType.LATEX)));
        this.retriever = retriever;
    }
View Full Code Here


public class CodeTag implements Tag<CodeChunk> {

    private HtmlAndKindleCodeTag htmlCodeTag;

    public CodeTag() {
        SyntaxHighlighter syntaxHighlighter = new SyntaxHighlighter(new SimpleCommandExecutor(),
                CodeOutputType.HTML, new CodeCache(CodeOutputType.HTML));
        htmlCodeTag = new HtmlAndKindleCodeTag(syntaxHighlighter);
    }
View Full Code Here

TOP

Related Classes of br.com.caelum.tubaina.util.SimpleCommandExecutor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.