# posthtml-rename-tags **Repository Path**: mirrors_posthtml/posthtml-rename-tags ## Basic Information - **Project Name**: posthtml-rename-tags - **Description**: Rename html tags - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2025-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # posthtml-rename-tags PostHTMLRenameTags is plugin for [PostHTML](https://github.com/posthtml/posthtml). It replace HTML tags with new tag. ## Usage ``` javascript var posthtml = require('posthtml'), html = '
OMG
'; posthtml([ require('posthtml-rename-tags')({ '.wow' : 'span' })]) .process(html) .then(function(result) { console.log(result); }); // OMG ```