Rename REAMDE to README.md
[nit.git] / src / nitdoc.nit
index d267544..e0c343a 100644 (file)
@@ -32,7 +32,18 @@ private class Nitdoc
        do
                var doc = new DocModel(mainmodule.model, mainmodule)
 
-               var phases = new Array[DocPhase]
+               var phases = [
+                       new ExtractionPhase(toolcontext, doc),
+                       new IndexingPhase(toolcontext, doc),
+                       new MakePagePhase(toolcontext, doc),
+                       new POSetPhase(toolcontext, doc),
+                       new ConcernsPhase(toolcontext, doc),
+                       new StructurePhase(toolcontext, doc),
+                       new InheritanceListsPhase(toolcontext, doc),
+                       new IntroRedefListPhase(toolcontext, doc),
+                       new LinListPhase(toolcontext, doc),
+                       new GraphPhase(toolcontext, doc),
+                       new RenderHTMLPhase(toolcontext, doc): DocPhase]
 
                for phase in phases do
                        toolcontext.info("# {phase.class_name}", 1)