See it in action:
Complete page of software available for download from my web site:
Announcement
Collapse
No announcement yet.
support for text blocks
Collapse
X
-
Code:// myprog.rc // resource script for myprog DOC TEXT docfilename LICENSE TEXT licensefilename ...
MCM
Leave a comment:
-
support for text blocks
I wanted a PBCC application to be able to regenerate its documentation file, but soon found it was more trouble than it was worth. So I would like to see a text block feature someday.
One way is to simply support the Python-esque triple quotes:
Code:STDOUT """ lots of text here """
Code:TEXT BEGIN="Readme" #INCLUDE "Readme-English.txt" #INCLUDE "Readme-French.txt" TEXT END="Readme" TEXT BEGIN="License" 'Except for comments and #statements for the compiler, any text 'included here will also be treated as text. #INCLUDE "GPL3.txt" 'GPL3.txt was formatted to 64 columns. This line will be picked up after GPL3.txt is. And then this line. TEXT END="License" 'whatever goes here STDOUT TEXT.Readme
Tags: None
Leave a comment: