From d0a34212703a8947defb27df9b6f2117277a9e7b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20Backstr=C3=B6m?= <lukas@erlang.org>
Date: Mon, 28 Oct 2024 15:25:32 +0100
Subject: [PATCH] Fix blockqoute markdown lint

---
 eeps/eep-0016.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/eeps/eep-0016.md b/eeps/eep-0016.md
index ace93cf..afa6c87 100644
--- a/eeps/eep-0016.md
+++ b/eeps/eep-0016.md
@@ -181,12 +181,13 @@ it would be easier to add this than to write it up.
 
 Here's some text to go in the documentation:
 
+<!-- markdownlint-disable MD027 -->
 >     is_integer(Term, LB, UB) -> bool()
->
+> 
 >     Types:
->         Term = term()
->         LB = integer()
->         UB = integer()
+>        Term = term()
+>        LB = integer()
+>        UB = integer()
 >
 > Returns true if Term is an integer lying between LB
 > and UB inclusive (LB =< Term, Term =< UB); otherwise