const minisrv_service_file = true; const docName = request_headers.query.docName; const page = session_data.pagestore.loadPage(docName); headers = `200 OK Connection: Keep-Alive Content-Type: text/html` if (request_headers.query.publishing === "true") { data = ` Title & Description
 
 
 
Help
 
 
Title and description for your page

Before publishing your page to the Web, you may wish to confirm its title and description.

The title appears at the top of your page, if you've chosen to show it. The title and description appear in the list of your pages.

Type your page's title:
Type your page's description:
Continue
` } else if (request_headers.query.titleOnly === "true") { data = ` Title
 
 
 
Help
 
 
Title for your page

The title appears at the top of your page (if you choose to show it) as well as in the list of your pages.

Type your page's title:
Show this title on your page
Done
` } else { data = ` Title & Description
 
 
 
Help
 
 
Title and description for your page

The title appears at the top of your page, if you've chosen to show it. The title and description appear in the list of your pages.

Type your page's title:
Type your page's description:
Include this page in your public list of pages
Done
` }