CASE use top borders in a table

It is now possible to use top borders for a cell in a table, if you use this code:

|^   ^| 

which will result in this:
38

you could have a combination of below and top borders as well:

|^_   _^| 

to look like this:
51

Here’s an example of this particular code, where you should be aware no spaces are allowed after those pipes!

{% input custom.accounts.range as:account_collection range:61 accounts_var:accounts %}


{% stripnewlines %}
| Account
| D.
| C. 
| Value
{% for acc in accounts %}
{% if forloop.first %}
{% newline %}
|----60%----
|----15%----:
|----15%----:
|-----------:+
{% endif %}
  {% newline %}
  | {{ acc.link }}
  | {{ acc.debet_value | currency }}
  | {{ -acc.credit_value | currency  }}
  | {{ acc.value | currency }}
  {% if forloop.last %}
    {% newline %}
    |
    |
    |
    |^_ {{ accounts.value | currency  }} _^|
  {% endif %}
{% endfor %}
{% endstripnewlines %}