blob: 1224005aaef2132d962d5902862048cd9fc62a9c [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library dartdoc.html_generator;
import 'dart:async' show Future;
import 'package:dartdoc/dartdoc.dart';
import 'package:dartdoc/src/generator.dart';
import 'package:dartdoc/src/generator_frontend.dart';
import 'package:dartdoc/src/html/html_generator_backend.dart';
Future<Generator> initHtmlGenerator(GeneratorContext context) async {
var backend = await HtmlGeneratorBackend.fromContext(context);
return GeneratorFrontEnd(backend);
}