//
// Copyright (c) 2009, Brian Frank and Andy Frank
// Licensed under the Academic Free License version 3.0
//
// History:
// 17 Jul 09 Andy Frank Creation
//
using compiler
**
** SymbolsToHtml generates the pod-meta.html file for a pod.
**
class SymbolsToHtml : DocCompilerSupport
{
new make(DocCompiler compiler)
: super(compiler)
{
}
Void run()
{
log.debug(" Symbols [$compiler.pod]")
file := compiler.podDir + "pod-meta.html".toUri
loc := Location("pod-meta.html")
SymbolsGenerator(compiler, loc, file.out).generate
}
}