;;; You should have received a copy of the GNU General Public License
;;; along with Mudsync. If not, see <http://www.gnu.org/licenses/>.
-;;; SCRUBL: S-exps Craftily/Crappily Representing the Underlying Basic Language
+;;; SCRUBL: S-exps Craftily/Crappily Rendering Underlying Basic Language
;;; a micro-"skribe-like" system (kinda ugly tho)
;;; Turns quasiquoted structures into something rendered.
;;;
(define scrubl-sxml
(make-scrubl `((p . ,(scrubl-sxml-simple-field 'p))
- (bold . ,(scrubl-sxml-simple-field 'b))
- (it . ,(scrubl-sxml-simple-field 'it))
- (emph . ,(scrubl-sxml-simple-field 'it)))
+ (strong . ,(scrubl-sxml-simple-field 'strong)) ; usually bold
+ (emph . ,(scrubl-sxml-simple-field 'em))) ; usually italicized
scrubl-sxml-write))