summaryrefslogtreecommitdiffstats
path: root/src/poem/recite.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/poem/recite.rs')
-rw-r--r--src/poem/recite.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/poem/recite.rs b/src/poem/recite.rs
index ba739c2..1d41c40 100644
--- a/src/poem/recite.rs
+++ b/src/poem/recite.rs
@@ -119,20 +119,6 @@ impl Reciteable for Poem {
}
j += 1;
}
-
- // // Get indices of words in the verse that begin with a vertical tab
- // let mut indicies = vec![];
- // for (i, word) in verse.stanza.iter().enumerate() {
- // if word.starts_with("\x0b") {
- // indicies.push(i);
- // }
- // }
-
- // // Try to recite the internal poem, and update the parent poem
- // for (i, poem) in verse.poems.iter().enumerate() {
- // let out = poem.recite(path, bins, Some(false))?;
- // verse.stanza[indicies[i]] = out;
- // }
}
match new_stanza {