2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-13 15:57:29 +01:00
|
|
|
module NumberHelper
|
|
|
|
def number_with_html_delimiter(num)
|
|
|
|
# we are using the span delimiter that doesn't insert spaces when copying and pasting the number
|
|
|
|
number_with_delimiter(num, delimiter: tag.span(class: 'numbers-delimiter'))
|
|
|
|
end
|
|
|
|
end
|