Skip to content

Commit

Permalink
Possibility to have a \image command inside a <A> tag
Browse files Browse the repository at this point in the history
Enable the possibility to have a `\image` command inside a <A> tag
  • Loading branch information
albert-github committed Aug 9, 2018
1 parent 69829b0 commit fb75925
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/docparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1561,6 +1561,9 @@ static bool defaultHandleToken(DocNode *parent,int tok, QList<DocNode> &children
doctokenizerYYsetStatePara();
}
break;
case CMD_IMAGE:
((DocPara *)parent) -> handleImage("image");
break;
default:
return FALSE;
}
Expand Down

0 comments on commit fb75925

Please sign in to comment.