Now with skipping consecutive links
This commit is contained in:
@@ -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()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user