Project

ampize

0.0
No commit activity in last 3 years
No release in over 3 years
ampize replace tags to AMP specific tags and remove prohibited tags and attributes.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
~> 10.0
>= 0

Runtime

~> 2.0
~> 1.6
 Project Readme

Ampize

Ampize replaces tags to AMP specific tags and removes prohibited tags and attributes.
If img tag doesn't explictly specify a size Ampize download a source image and set a size to amp-img tag automatically.

Installation

Add this line to your application's Gemfile:

gem 'ampize'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ampize

Usage

ampize = Ampize::Ampize.new()
result = ampize.transform('<img src="./spec/data/rect.jpg" />')
puts result
>> <amp-img src="./spec/data/rect.jpg" width="100" height="100" layout="responsive"></amp-img>

If img element doesn't have width/height attributes then Ampize download an image to get a dimension. Ofcourse if img element have a size Ampize keep it.

Currently Ampize doesn't support amp-audio, amp-video. Your contribution is always welcome.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/dotneet/ampize.