1. rosetta-tohtml
Replaces <script> tags with HTML by processing either their content or src attribute through a user-defined function
rosetta-tohtml
Package: rosetta-tohtml
Created by: adamcarheden
Last modified: Sun, 26 Jun 2022 14:12:37 GMT
Version: 1.0.1
License: GPL-3.0
Downloads: 6
Repository: https://github.com/adamcarheden/rosetta-tohtml

Install

npm install rosetta-tohtml
yarn add rosetta-tohtml

rosetta-tohtml

Translates script tags into HTML using a user-defined function

Rosetta is a framework for using languages other than Javascript in web browsers by providing a hook into the type attribute of HTML script tags. You provide Rosetta with a function that translates the content of the script tag into Javascript. rosetta-tohtml lets you provide a function to translate the content of the script tag into html instead of Javascript, allowing you to write content for the web in something other than HTML. Markdown is the obvious choice, but for that see rosetta-markdown.

Demo

Live Demo

Install

 npm install rosetta-tohtml --save

or

 git clone https://github.com/adamcarheden/rosetta-tohtml.git

Use

 // Get a handle on things.
// It's umd (https://github.com/umdjs/umd), 
// so pick your favorite javascript reuse method of the week
var rosettaToHTML = require('rosetta-tohtml');

// Pull in some code to translate for you
// We'll use marked (https://github.com/chjj/marked) to translate markdown
//
// Note - If you want markdown, try this instead of just copying this example:
// https://github.com/adamcarheden/rosetta-markdown
//
var marked = require('marked');

// Map script tag type attributes to your translation function
rosettaToHTML.appendCompiler([ "text/markdown", "text/md" ], function(md) { 
	return marked(md);
});

// Once the page is loaded...
document.addEventListener("DOMContentLoaded", function() {
	// ...kick off replacements
	rosettaToHTML.translateAll();
});	

Dump the above in a script tag and then dump markdown in a script tag with a type='text/md' attribute.

Contribute

 npm install
npm run build

This just webpackifies stuff at the moment.
Some karma and nightwatch tests would be a good addition.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code