Filter for linking Agda identifiers in inline code spans
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
268 B

2 years ago
2 years ago
  1. This is a literate Agda file.
  2. Here's some inline code:
  3. - This is a link to the record below: `Record`{.agda}
  4. - This is not: `Record`
  5. - This is a link with alternate text: `also a link`{.agda ident=Record}
  6. ```agda
  7. record Record : Set where
  8. constructor hey-look
  9. ```