Skip to content

Commit

Permalink
Created a list, to be able to add license information
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Dec 24, 2009
1 parent 8dee40d commit 5b5e54d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions createModulePages.groovy
Expand Up @@ -83,8 +83,14 @@ files.each { file ->
p(){
if (libdepends.exists()) {
b("Libraries")
libdepends.text.eachLine{
span(it)
ul() {
libdepends.text.eachLine{ libdep ->
if (libdep.length() > 0) {
p() {
span(libdep)
}
}
}
}
}
}
Expand Down

0 comments on commit 5b5e54d

Please sign in to comment.