You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When developing a custom filter, call `HTMLPipeline.require_dependency` at the start to ensure that the local machine has the necessary dependency. You can also use `HTMLPipeline.require_dependencies` to provide a list of dependencies to check.
269
269
270
+
On a similar note, you must manually require whichever filters you desire:
271
+
272
+
```ruby
273
+
require"html_pipeline"# must be included
274
+
require"html_pipeline/convert_filter/markdown_filter"# included because you want to use this filter
275
+
require"html_pipeline/node_filter/mention_filter"# included because you want to use this filter
276
+
```
277
+
270
278
## Documentation
271
279
272
280
Full reference documentation can be [found here](http://rubydoc.info/gems/html-pipeline/frames).
0 commit comments