X-Git-Url: http://nitlanguage.org diff --git a/src/nitlight.nit b/src/nitlight.nit index 64bea58..5f22329 100644 --- a/src/nitlight.nit +++ b/src/nitlight.nit @@ -26,19 +26,14 @@ var opt_dir = new OptionString("Output html files in a specific directory (requi var opt_full = new OptionBool("Process also imported modules", "--full") var opt_ast = new OptionBool("Generate specific HTML elements for each Node of the AST", "--ast") toolcontext.option_context.add_option(opt_fragment, opt_first_line, opt_last_line, opt_dir, opt_full) +toolcontext.tooldescription = "Usage: nitlight [OPTION]... ...\nGenerates HTML of highlited code from Nit source files." var model = new Model var modelbuilder = new ModelBuilder(model, toolcontext) -toolcontext.process_options +toolcontext.process_options(args) var args = toolcontext.option_context.rest -if args.is_empty then - print "usage: nitlight [options] files..." - toolcontext.option_context.usage - return -end - var mmodules = modelbuilder.parse(args) modelbuilder.run_phases