New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hexo-generator-amp

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexo-generator-amp

AMP ⚡ HTML (Accelerated Mobile Pages) generator for Hexo.

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
113
increased by334.62%
Maintainers
1
Weekly downloads
 
Created
Source

hexo-generator-amp

AMP ⚡ HTML (Accelerated Mobile Pages Project HTML) generator for Hexo.

Orverview

This plugin automatically generates AMP HTML pages. Output file path is ./your-parmalink/amp/. Also, You can freely choose the template(.ejs) and style(.css).

DEMO

DEMO : HTML page | generated AMP HTML page

Installation

$ npm install hexo-generator-amp --save

Usage

1. Edit your theme

First, add the following in your template files. For example , Please edit themes/(your-theme)/layout/_partial/head.ejs.

  <% if (is_post() && config.generator_amp){ %>
    <link rel="amphtml" href="./amp/index.html">
  <% } %>

2. Add your config file

Please set the following options. Please edit _config.yml.

# The following settings is the quick start options.
generator_amp:
  templateDir: amp-template
  assetDistDir: amp-dist
  logo:
    path: sample/sample-logo.png
    width: 600
    height: 60
  substituteTitleImage: 
    path: sample/sample-substituteTitleImage.png
    width: 1024
    height: 800
  google_analytics: UA-123456789-1
  warningLog: false

3. Run server

Starts a local server. By default, this is at http://localhost:4000/.

$ hexo server

4. Validate AMP Pages

This plugin generated the AMP HTML. Output file path is ./your-parmalink/amp/.

Now validate your AMP pages. Open your AMP page in your browser. Open the Chrome DevTools console and check for validation errors. Please Append http://localhost:4000/your-parmalink/amp/#development=1 to the URL. Please see below for the details.

Accelerated Mobile Pages Project - Validate AMP Pages

How to validate AMP - my blog

Options

This plugin can set the following options. Please edit _config.yml.

# Advanced Settings of hexo-amp-generator
generator_amp:
  substituteGoogle_adsense:
    data_ad_client: ca-pub-123456789876543
    data_ad_slot: 0123456789
    width: 336
    height: 280
  templateDir: amp-template
  assetDistDir: amp-dist
  logo:
    path: sample/sample-logo.png
    width: 600  # width <= 600px
    height: 60  # width <= 60px
  logo_topImage:                              #(optional)
    path: sample/sample-yoursite-logo.png     #(optional)
    width: 1024                               #(optional)
    height: 400                               #(optional)
  substituteTitleImage: 
    path: sample/sample-substituteTitleImage.png
    width: 1024 # width >= 696px
    height: 800
  cssFilePath: sample/sample-amp.css          #(optional)
  templateFilePath: sample/sample-amp.ejs     #(optional)
  google_analytics: UA-123456789-1
  html_minifier:                              #(optional)
  warningLog: true
  onlyForDeploy: false                        #(optional)
  
authorDetail:
  authorReading: Your name description        #(optional)
  avatar:
    path: sample/sample-avator.png            #(optional)
    width: 150                                #(optional)
    height: 150                               #(optional)
  description: Self introduction              #(optional)
copyright_notice: The footer copyright notice #(optional)

A description of the options

generator_amp settings
  • substituteGoogle_adsense
    • substituteGoogle_adsense.data_ad_client: substitute data_ad_client id
    • substituteGoogle_adsense.data_ad_slot: substitute data_ad_slot id
    • substituteGoogle_adsense.width: substitute ad width
    • substituteGoogle_adsense.height: substitute ad height
  • templateDir: File path of a your AMP template files.
  • assetDistDir: File path of a your public AMP Assets.
  • logo
    • logo.path: File path of a your logo (schema.org logo for AMP) image.
    • logo.width: Width of a your logo (schema.org logo for AMP) image. (width <= 600px)
    • logo.height: Height of a your logo (schema.org logo for AMP) image. (height <= 60px)
  • logo_topImage
    • logo_topImage.path: File path of a your site logo image.
    • logo_topImage.width: Width of a your site logo image.
    • logo_topImage.height: Height of a your site logo image.
  • substituteTitleImage
    • substituteTitleImage.path: File path of a your substitute title image. (Use this when the image is not in the markdown)
    • substituteTitleImage.width: Width of a your substitute title image. (width >= 696px)
    • substituteTitleImage.height: Height of a your substitute title image.
  • cssFilePath(optional): File path of a your css file for AMP. (e.g. ./sample-amp.css) It is a validation error if the author stylesheet is larger than 50,000 bytes.
  • templateFilePath(optional): File path of a your template file for AMP. (e.g. ./sample-amp.ejs)
  • google_analytics: Your google analytics tracking ID.
  • html_minifier: Enabled html_minifier. Please see kangax/html-minifier for the details.
  • warningLog: Enabled warnings.
  • onlyForDeploy: This option to shorten the hours, when you run local server. Option switch from ordinary-use to deploy-only. (default:false)
Auther detail settings (optional)
  • authorReading: Your name description.
  • avatar
    • avatar.path: File path of a your avator image.
    • avatar.width: Width of a your avator image.
    • avatar.height: Height of a your avator image.
  • description: Self introduction.
  • copyright_notice: The footer copyright notice.

Front-matter option.

ampSettings.titleImage.path (optional)

You can choose path of schema.org image on a per post. If your post is not contain this option , this plugin search image from content.

For example : hello-world.md , Please set the following options.

---
title: Hello World
ampSettings: 
 titleImage:
   path: titleImage-on-the-local-folder.png
---

Welcome to [Hexo](https://hexo.io/)! This is your very first post. 
...

If image on the external , Please set the width and height options.

---
title: Hello World
ampSettings: 
 titleImage:
   path: http://titleImage-on-the-external.png
   width: 1024
   height: 800
---

Welcome to [Hexo](https://hexo.io/)! This is your very first post. 
...

Supports external services

Supports the following external services.

License

MIT

Keywords

FAQs

Package last updated on 27 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc