Class: HtmlToMarkdown::PreprocessingOptions
- Inherits:
-
Object
- Object
- HtmlToMarkdown::PreprocessingOptions
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean?
Returns the value of attribute enabled.
-
#preset ⇒ PreprocessingPreset?
Returns the value of attribute preset.
-
#remove_forms ⇒ Boolean?
Returns the value of attribute remove_forms.
-
#remove_navigation ⇒ Boolean?
Returns the value of attribute remove_navigation.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ PreprocessingOptions
constructor
A new instance of PreprocessingOptions.
Constructor Details
#initialize ⇒ PreprocessingOptions
Returns a new instance of PreprocessingOptions.
184 |
# File 'sig/types.rbs', line 184
def initialize: (?enabled: bool, ?preset: PreprocessingPreset, ?remove_navigation: bool, ?remove_forms: bool) -> void
|
Instance Attribute Details
#enabled ⇒ Boolean?
Returns the value of attribute enabled.
179 180 181 |
# File 'sig/types.rbs', line 179 def enabled @enabled end |
#preset ⇒ PreprocessingPreset?
Returns the value of attribute preset.
180 181 182 |
# File 'sig/types.rbs', line 180 def preset @preset end |
#remove_forms ⇒ Boolean?
Returns the value of attribute remove_forms.
182 183 184 |
# File 'sig/types.rbs', line 182 def remove_forms @remove_forms end |
#remove_navigation ⇒ Boolean?
Returns the value of attribute remove_navigation.
181 182 183 |
# File 'sig/types.rbs', line 181 def @remove_navigation end |
Class Method Details
.default ⇒ PreprocessingOptions
185 |
# File 'sig/types.rbs', line 185
def self.default: () -> PreprocessingOptions
|