aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v3/manifest.rb
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2012-10-01 16:17:42 -0400
committerRalph Amissah <ralph@amissah.com>2012-10-01 16:17:42 -0400
commitd6ef30b3f58d9278c11ca7de73b012968a35ba9b (patch)
treeaae88c7355d95c9fc85e7854e9d58b09d7d4ee6e /lib/sisu/v3/manifest.rb
parentv3: dal, sysenv, file processing, split objects; remove ref to old ruby (diff)
v3: header @classify: :topic_register: provide greater classification "depth"
* param, manifest * harvest_topics
Diffstat (limited to 'lib/sisu/v3/manifest.rb')
-rw-r--r--lib/sisu/v3/manifest.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/sisu/v3/manifest.rb b/lib/sisu/v3/manifest.rb
index c2490837..58f2d8eb 100644
--- a/lib/sisu/v3/manifest.rb
+++ b/lib/sisu/v3/manifest.rb
@@ -699,7 +699,13 @@ WOK
t.each_with_index do |st,i|
if st.is_a?(Array)
st.each do |v|
- @manifest[:html] << %{<p class="it#{i}">#{v}</p>\n}
+ if v.is_a?(Array)
+ v.each do |w,i|
+ @manifest[:html] << %{<p class="it#{i}">#{w}</p>\n}
+ end
+ else
+ @manifest[:html] << %{<p class="it#{i}">#{v}</p>\n}
+ end
end
else @manifest[:html] << %{<p class="it#{i}">#{st}</p>\n}
end