summaryrefslogtreecommitdiff
path: root/src/clarktown/matchers/horizontal_line_block.clj
blob: a2dde6e42a3fff229e4db917752eb8c329a00e29 (plain)
1
2
3
4
5
6
7
8
9
10
(ns clarktown.matchers.horizontal-line-block
  (:require
    [clojure.string :as string]))


(defn match?
  "Determines whether the given block is a horizontal line block."
  [block]
  (or (= "***" (string/trim block))
      (= "---" (string/trim block))))