Siteβ―Builder
Editing:
prompter1.html
writable 0666
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Promptinator Playground</title> <meta name="viewport" content="width=device-width,initial-scale=1"> <style> body { font-family: system-ui, sans-serif; max-width: 800px; margin: 2rem auto; line-height: 1.5; color: #333; } h1 { text-align: center; margin-bottom: 1.5rem; } /* container styling */ [data-promptinator] { background: #f7f9fc; border: 1px solid #ddd; border-radius: 8px; padding: 1rem 1.5rem; margin-bottom: 1.5rem; } /* rendered tokens */ .pn-token { background: #e0f2ff; border-radius: 4px; padding: .25em .6em; margin: .2em .2em 0 0; display: inline-block; cursor: pointer; user-select: none; } /* inline toolbar */ .pn-toolbar { position: absolute; background: white; border: 1px solid #aaa; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: .6rem; border-radius: 6px; z-index: 100; } .pn-toolbar textarea, .pn-toolbar select { width: 100%; margin-bottom: .5rem; } .pn-output { background: #272c34; color: #dcdcdc; padding: 1rem; border-radius: 6px; font-family: monospace; white-space: pre-wrap; } </style> </head> <body> <h1>Promptinator Demo</h1> <!-- your prompt block: --> <div data-promptinator> Write a detailed article [A-title- ~The Hidden World of Biophotons~] in a [B-tone- |scientific|journalistic|storytelling| ~scientific~] style. Include sections on [C-themes- |detection techniques|cell-to-cell communication|health applications| ~detection techniques, health applications~]. Break it into [D-paragraphs-5~4~] paragraphs. (For reference, you can consult) [I-reference- |https://doi.org/10.4103/ATN.ATN-D-24-00019|https://en.wikipedia.org/wiki/Biophoton| ~Pick a site~] </div> <!-- the script that powers Promptinator --> <script src="Promptinator.js"></script> <script> // once the script is loaded, kick off the scanner Promptinator.init(); </script> </body> </html>
Save changes
Create folder
writable 0777
Create
Cancel