September 19, 2020
1 min read

A scriptable textpad

Welcome to the Polypad blog. We have created this blog to keep users informed throughout the development process and post-development.

Polypad is a new scratchpad that will allow end-users to create scripts to transform text.

How will it work?

Polypad will allow users to create scripts using javascript to transform text. For example, let’s say you would like to make a script to uppercase some text.

You would create a script, uppercase.js, and javascript code like this within the script file.

function main(input) {
  input.text = input.text.toUpperCase();
}

Now within Polypad, you would paste some text and search for the script to transform it.

Let us know if you want to see a new utility or want to enhance the existing utility.

We are focusing on JSON, XML, JavaScript, HTML, CSS, and Conversion between types of data like XML to JSON, JSON to CSV, and much more.

We are looking forward to sharing more with you all as development progresses.