html-pipeline 2.12.3 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +4 -0
- data/CHANGELOG.md +14 -0
- data/README.md +6 -3
- data/lib/html/pipeline/sanitization_filter.rb +1 -1
- data/lib/html/pipeline/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8d5622a3fa6bf3a03909aa620ddb19ff0c2b1b3296a2a019410e1f69a5e4fa1
|
4
|
+
data.tar.gz: f21358c32997b668bd7c8d70756b18763e049ae1a10bbd65bd87d1a84d723efb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2d55abf9182888317ecdc9e426185ecea7d4047096766082d9f271df78b21fb257bfacbcecf9ca500aac8bc1e7db5a00dbdc9b762bb2cae18205c55228e1215
|
7
|
+
data.tar.gz: cc8eedcfeb8cebfbd651f0f1ba86391857e825766e1a87d9b4c330f42bdbb881dda9b6690aed17e7134e49c6bd61ff3ff70e7fac08dd03adead8a1ddb90d710c
|
data/.github/FUNDING.yml
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 2.12.3
|
4
|
+
|
5
|
+
* Bug fix in `SyntaxHighlightFilter` [#325](https://github.com/jch/html-pipeline/pull/325)
|
6
|
+
|
7
|
+
## 2.12.2
|
8
|
+
|
9
|
+
* Allow unsafe option for Custom Renderer of `MarkdownFilter` [#322](https://github.com/jch/html-pipeline/pull/322)
|
10
|
+
* Test with minitest-focus
|
11
|
+
|
12
|
+
## 2.12.1
|
13
|
+
|
14
|
+
* Allow Custom Renderer for `MarkdownFilter` [#318](https://github.com/jch/html-pipeline/pull/318)
|
15
|
+
* Test against more Rails versions
|
16
|
+
|
3
17
|
## 2.12.0
|
4
18
|
|
5
19
|
* Team mention filter [#314](https://github.com/jch/html-pipeline/pull/314)
|
data/README.md
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
# HTML::Pipeline [](https://travis-ci.org/jch/html-pipeline)
|
2
2
|
|
3
|
-
|
3
|
+
HTML processing filters and utilities. This module includes a small
|
4
4
|
framework for defining DOM based content filters and applying them to user
|
5
|
-
provided content.
|
6
|
-
|
5
|
+
provided content.
|
6
|
+
|
7
|
+
[This project was started at GitHub](https://github.com/blog/1311-html-pipeline-chainable-content-filters). While GitHub still uses a similar design and pattern for rendering content, this gem should be considered standalone and independent from GitHub.
|
7
8
|
|
8
9
|
- [Installation](#installation)
|
9
10
|
- [Usage](#usage)
|
@@ -354,6 +355,8 @@ Thanks to all of [these contributors](https://github.com/jch/html-pipeline/graph
|
|
354
355
|
|
355
356
|
Project is a member of the [OSS Manifesto](http://ossmanifesto.org/).
|
356
357
|
|
358
|
+
The current maintainer is @gjtorikian
|
359
|
+
|
357
360
|
### Releasing A New Version
|
358
361
|
|
359
362
|
This section is for gem maintainers to cut a new version of the gem.
|
@@ -69,7 +69,7 @@ module HTML
|
|
69
69
|
maxlength media method
|
70
70
|
multiple name nohref noshade
|
71
71
|
nowrap open prompt readonly rel rev
|
72
|
-
rows rowspan rules scope
|
72
|
+
role rows rowspan rules scope
|
73
73
|
selected shape size span
|
74
74
|
start summary tabindex target
|
75
75
|
title type usemap valign value
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html-pipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Tomayko
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2020-05-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
@@ -49,6 +49,7 @@ executables: []
|
|
49
49
|
extensions: []
|
50
50
|
extra_rdoc_files: []
|
51
51
|
files:
|
52
|
+
- ".github/FUNDING.yml"
|
52
53
|
- ".gitignore"
|
53
54
|
- ".travis.yml"
|
54
55
|
- Appraisals
|
@@ -106,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
107
|
- !ruby/object:Gem::Version
|
107
108
|
version: '0'
|
108
109
|
requirements: []
|
109
|
-
rubygems_version: 3.
|
110
|
+
rubygems_version: 3.1.2
|
110
111
|
signing_key:
|
111
112
|
specification_version: 4
|
112
113
|
summary: Helpers for processing content through a chain of filters
|