-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In this second release we **added support** to: - Export AMP along with required libraries for AMP rendering - Configure custom HTML and AMP element exporters - Resolve oembed elements in HTML export One potentially **breaking change** was added: - Export quotes as `<div>` instead of `<aside>` **Fixes**: - Support Vimeo videos with old flash player URLs - Make Google Parser more fault tolerant - Respect linebreaks when importing Google Docs - Export linebreaks in JSON to `<br>` tags in HTML / AMP Also add @towanda and myself as gem authors to the gemspec and change authors to contain clear names instead of Github handle (since this is the community standard)
- Loading branch information
1 parent
5b17aab
commit 925013a
Showing
5 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Gem::Specification.new do |s| | |
s.version = ArticleJSON::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
|
||
s.authors = %w(@dsager) | ||
s.authors = ['Daniel Sager', 'Manu Campos', 'Nicolas Fricke'] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/Devex/article_json' | ||
s.license = 'MIT' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module ArticleJSON | ||
VERSION = '0.1.0' | ||
VERSION = '0.2.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"article_json_version": "0.1.0", | ||
"article_json_version": "0.2.0", | ||
"content": [ | ||
{ | ||
"type": "paragraph", | ||
|