Skip to content

Commit

Permalink
Fix the extensions enum
Browse files Browse the repository at this point in the history
  • Loading branch information
vmg committed Apr 12, 2012
1 parent 3826180 commit 2607a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.h
Expand Up @@ -58,7 +58,7 @@ enum mkd_extensions {
MKDEXT_STRIKETHROUGH = (1 << 4),
MKDEXT_SPACE_HEADERS = (1 << 6),
MKDEXT_SUPERSCRIPT = (1 << 7),
MKDEXT_LAX_SPACING = (1 << 7),
MKDEXT_LAX_SPACING = (1 << 8),
};

/* sd_callbacks - functions for rendering parsed data */
Expand Down

0 comments on commit 2607a45

Please sign in to comment.