Esempio n. 1
0
        public ArticleParser(ParserOptions options, IProvideGitFileInformation repoAnalyzer)
            : base(options)
        {
            var articleCompiler = new ArticleCompiler(Parser, options, repoAnalyzer);

            _directoryCompiler = new ArticleDirectoryCompiler(articleCompiler, options);
        }
Esempio n. 2
0
 public ArticleDirectoryCompiler(ArticleCompiler articleCompiler, ParserOptions options)
 {
     _articleCompiler = articleCompiler;
     _options         = options;
 }