mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Add an FAQ with only a default answer in it.
This commit is contained in:
parent
8c92d2cb9b
commit
7d61732931
2 changed files with 14 additions and 1 deletions
9
FAQ
Normal file
9
FAQ
Normal file
|
@ -0,0 +1,9 @@
|
|||
= Frequently Asked Questions
|
||||
|
||||
== You still haven't answered my question!
|
||||
|
||||
Sorry! Try looking at the Haml or Sass references,
|
||||
in the doucmentation for the haml and Sass modules, respectively.
|
||||
If you can't find an answer there,
|
||||
feel free to ask in #haml on irc.freenode.net
|
||||
or send an email to the {mailing list}[http://groups.google.com/group/haml?hl=en].
|
6
Rakefile
6
Rakefile
|
@ -94,8 +94,12 @@ end
|
|||
rdoc_task = Proc.new do |rdoc|
|
||||
rdoc.title = 'Haml/Sass'
|
||||
rdoc.options << '--line-numbers' << '--inline-source'
|
||||
rdoc.rdoc_files.include('README.rdoc')
|
||||
rdoc.rdoc_files.include(*FileList.new('*') do |list|
|
||||
list.exclude(/(^|[^.a-z])[a-z]+/)
|
||||
list.exclude('TODO')
|
||||
end.to_a)
|
||||
rdoc.rdoc_files.include('lib/**/*.rb')
|
||||
rdoc.rdoc_files.exclude('TODO')
|
||||
rdoc.rdoc_files.exclude('lib/haml/buffer.rb')
|
||||
rdoc.rdoc_files.exclude('lib/sass/tree/*')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue