From 2a07386455d11afe616a6184c03e88a1c969316b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Fri, 1 Apr 2016 10:49:23 +0300 Subject: [PATCH] Rename HtmlFlags to HTMLFlags to adhere to Go style --- html.go | 16 ++++++++-------- inline_test.go | 4 ++-- markdown.go | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/html.go b/html.go index f2bc204..4d0b8a3 100644 --- a/html.go +++ b/html.go @@ -25,12 +25,12 @@ import ( "strings" ) -type HtmlFlags int +type HTMLFlags int // HTML renderer configuration options. const ( - HtmlFlagsNone HtmlFlags = 0 - SkipHTML HtmlFlags = 1 << iota // Skip preformatted HTML blocks + HTMLFlagsNone HTMLFlags = 0 + SkipHTML HTMLFlags = 1 << iota // Skip preformatted HTML blocks SkipStyle // Skip embedded