Class: Xberg::ContentConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeContentConfig

Returns a new instance of ContentConfig.

Parameters:

  • output_format: (String)
  • preprocessing_preset: (String)
  • remove_navigation: (Boolean)
  • remove_forms: (Boolean)
  • strip_tags: (Array[String])
  • preserve_tags: (Array[String])
  • exclude_selectors: (Array[String])
  • skip_images: (Boolean)
  • max_depth: (Integer)
  • wrap: (Boolean)
  • wrap_width: (Integer)
  • include_document_structure: (Boolean)


300
# File 'sig/types.rbs', line 300

def initialize: (?output_format: String, ?preprocessing_preset: String, ?remove_navigation: bool, ?remove_forms: bool, ?strip_tags: Array[String], ?preserve_tags: Array[String], ?exclude_selectors: Array[String], ?skip_images: bool, ?max_depth: Integer, ?wrap: bool, ?wrap_width: Integer, ?include_document_structure: bool) -> void

Instance Attribute Details

#exclude_selectorsArray[String] (readonly)

Returns the value of attribute exclude_selectors.

Returns:

  • (Array[String])


293
294
295
# File 'sig/types.rbs', line 293

def exclude_selectors
  @exclude_selectors
end

#include_document_structureBoolean (readonly)

Returns the value of attribute include_document_structure.

Returns:

  • (Boolean)


298
299
300
# File 'sig/types.rbs', line 298

def include_document_structure
  @include_document_structure
end

#max_depthInteger? (readonly)

Returns the value of attribute max_depth.

Returns:

  • (Integer, nil)


295
296
297
# File 'sig/types.rbs', line 295

def max_depth
  @max_depth
end

#output_formatString (readonly)

Returns the value of attribute output_format.

Returns:

  • (String)


287
288
289
# File 'sig/types.rbs', line 287

def output_format
  @output_format
end

#preprocessing_presetString (readonly)

Returns the value of attribute preprocessing_preset.

Returns:

  • (String)


288
289
290
# File 'sig/types.rbs', line 288

def preprocessing_preset
  @preprocessing_preset
end

#preserve_tagsArray[String] (readonly)

Returns the value of attribute preserve_tags.

Returns:

  • (Array[String])


292
293
294
# File 'sig/types.rbs', line 292

def preserve_tags
  @preserve_tags
end

#remove_formsBoolean (readonly)

Returns the value of attribute remove_forms.

Returns:

  • (Boolean)


290
291
292
# File 'sig/types.rbs', line 290

def remove_forms
  @remove_forms
end

#remove_navigationBoolean (readonly)

Returns the value of attribute remove_navigation.

Returns:

  • (Boolean)


289
290
291
# File 'sig/types.rbs', line 289

def remove_navigation
  @remove_navigation
end

#skip_imagesBoolean (readonly)

Returns the value of attribute skip_images.

Returns:

  • (Boolean)


294
295
296
# File 'sig/types.rbs', line 294

def skip_images
  @skip_images
end

#strip_tagsArray[String] (readonly)

Returns the value of attribute strip_tags.

Returns:

  • (Array[String])


291
292
293
# File 'sig/types.rbs', line 291

def strip_tags
  @strip_tags
end

#wrapBoolean (readonly)

Returns the value of attribute wrap.

Returns:

  • (Boolean)


296
297
298
# File 'sig/types.rbs', line 296

def wrap
  @wrap
end

#wrap_widthInteger (readonly)

Returns the value of attribute wrap_width.

Returns:

  • (Integer)


297
298
299
# File 'sig/types.rbs', line 297

def wrap_width
  @wrap_width
end