Differences From Artifact [0f1f907507]:
- File src/manifest.c — part of check-in [2336a2d86e] at 2013-03-29 16:38:48 on branch markdown — Add the N-card to control artifacts for wiki, checkins, events, and attachments, which opens up the possibility (not yet implemented) of being able to save wiki text, check-in comments, event text, and attachment descriptions in a variety of formats, such as text/plain, text/html, or text/x-markdown. (user: drh size: 65376)
To Artifact [18f07ec33d]:
- File src/manifest.c — part of check-in [6d4339bb09] at 2013-04-01 13:50:28 on branch markdown — Add the --mimetype option to the "commit" command. (user: drh size: 65411) [more...]
| ︙ | ︙ | |||
651 652 653 654 655 656 657 658 659 660 661 662 663 664 |
**
** An N-line identifies the mimetype of wiki or comment text.
*/
case 'N': {
if( p->zMimetype!=0 ) SYNTAX("more than one N-card");
p->zMimetype = next_token(&x,0);
if( p->zMimetype==0 ) SYNTAX("missing mimetype on N-card");
break;
}
/*
** P <uuid> ...
**
** Specify one or more other artifacts where are the parents of
| > | 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 |
**
** An N-line identifies the mimetype of wiki or comment text.
*/
case 'N': {
if( p->zMimetype!=0 ) SYNTAX("more than one N-card");
p->zMimetype = next_token(&x,0);
if( p->zMimetype==0 ) SYNTAX("missing mimetype on N-card");
defossilize(p->zMimetype);
break;
}
/*
** P <uuid> ...
**
** Specify one or more other artifacts where are the parents of
|
| ︙ | ︙ |