diff --git a/Rakefile b/Rakefile
index c2a127437f4eaf50a2e461855c56f1e217ad0013..e1f544467476a17011978c82f753641591a43901 100644
--- a/Rakefile
+++ b/Rakefile
@@ -43,10 +43,6 @@ def run_jsduck(extra_options)
"ruby", "bin/jsduck",
# --external=Error to ignore the Error class that Ext.Error extends.
"--external", "Error",
- '--link', '%a',
- # Note that we wrap image template inside
because {@img} often
- # appears inline within text, but that just looks ugly in HTML
- '--img', '

',
"--guides", "#{SDK_DIR}/guides",
"--guides-order", "getting,class,application,layouts,data,grid,tree,drawing,forms,components,theming,direct",
"--categories", "#{SDK_DIR}/extjs/doc-resources/categories.json",
diff --git a/bin/jsduck b/bin/jsduck
index 3abcd9f4420f4e02825e75276323acdd62378ad9..d091c38573db4ee489bab0b006abf924a9ca9693 100755
--- a/bin/jsduck
+++ b/bin/jsduck
@@ -82,7 +82,7 @@ opts = OptionParser.new do | opts |
"Possible placeholders:",
"%u - URL from @img tag (e.g. 'some/path.png')",
"%a - alt text for image",
- "Default value in export: '
'", " ") do |tpl|
+ "Default is: '
'", " ") do |tpl|
app.img_tpl = tpl
end
@@ -99,7 +99,7 @@ opts = OptionParser.new do | opts |
"%# - inserts '#' if member name present",
"%- - inserts '-' if member name present",
"%a - anchor text for link",
- "Default value in export: '%a'", " ") do |tpl|
+ "Default is: '%a'", " ") do |tpl|
app.link_tpl = tpl
end
diff --git a/lib/jsduck/app.rb b/lib/jsduck/app.rb
index d0d0362f44b21fbc35e2394a7e08603cb52a3aef..71744dca2e004fde3a3d9130831fc22ea7def0fd 100644
--- a/lib/jsduck/app.rb
+++ b/lib/jsduck/app.rb
@@ -83,6 +83,12 @@ module JsDuck
# Call this after input parameters set
def run
+ # Set default templates
+ @link_tpl ||= '%a'
+ # Note that we wrap image template inside because {@img} often
+ # appears inline within text, but that just looks ugly in HTML
+ @img_tpl ||= '

'
+
parsed_files = @timer.time(:parsing) { parallel_parse(@input_files) }
result = @timer.time(:aggregating) { aggregate(parsed_files) }
relations = @timer.time(:aggregating) { filter_classes(result) }