Last active
December 16, 2015 10:58
-
-
Save dyoo/5423623 to your computer and use it in GitHub Desktop.
An example of escapes for @
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang scribble/base | |
@title{Larger example} | |
@(define (double x) | |
(list x x)) | |
@; Everything within the following will be escaped. use |^ to unescape. | |
@list|^{ | |
this is an example with @ signs in it. I can still | |
use @ by using it like this: |^@tt{Hello world}, right? | |
Let's try another paragraph. | |
|^@section{Section one} | |
This is a first section with @ signs in it. | |
|^@section{Section two} | |
Here is another section with @ signs. We can still | |
call functions like this: |^@double{@double{quad}}. | |
}^| |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment