From 729ad8a2d855e8f93a12565520d411c781fb72b1 Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Thu, 7 Jan 2021 16:14:24 +0000 Subject: [PATCH] Fix Markdown syntax in Doxygen comment --- src/blackmisc/network/external/qjsonwebtoken.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blackmisc/network/external/qjsonwebtoken.h b/src/blackmisc/network/external/qjsonwebtoken.h index c3ab6ca29..211b591ef 100644 --- a/src/blackmisc/network/external/qjsonwebtoken.h +++ b/src/blackmisc/network/external/qjsonwebtoken.h @@ -26,7 +26,7 @@ \brief QJsonWebToken : JWT (JSON Web Token) Implementation in Qt C++ -## Introduction +# Introduction This class implements a subset of the [JSON Web Token](https://en.wikipedia.org/wiki/JSON_Web_Token) open standard [RFC 7519](https://tools.ietf.org/html/rfc7519). @@ -39,7 +39,7 @@ HS256 | HMAC using SHA-256 hash algorithm HS384 | HMAC using SHA-384 hash algorithm HS512 | HMAC using SHA-512 hash algorithm -### Include +## Include In order to include this class in your project, in the qt project **.pro** file add the lines: @@ -48,7 +48,7 @@ HEADERS += ./src/qjsonwebtoken.h SOURCES += ./src/qjsonwebtoken.cpp ``` -### Usage +## Usage The repository of this project includes examples that demonstrate the use of this class: