Now with skipping consecutive links

This commit is contained in:
Greg Hellings
2025-02-25 15:45:58 -06:00
parent 93b2cb6447
commit fc904b33b3
5 changed files with 25 additions and 2 deletions
+8
View File
@@ -22,6 +22,10 @@ impl Module {
self.module.pin_mut().increment();
}
pub fn is_skip_consecutive_links(&self) -> bool {
self.module.is_skip_consecutive_links()
}
pub fn render_text(&mut self) -> String {
self.module.pin_mut().render_text()
}
@@ -30,6 +34,10 @@ impl Module {
self.module.pin_mut().set_key_text(key_text);
}
pub fn set_skip_consecutive_links(&mut self, skip: bool) {
self.module.pin_mut().set_skip_consecutive_links(skip);
}
pub fn strip_text(&mut self) -> String {
self.module.pin_mut().strip_text()
}