What is the purpose of the center filter in the Jinja2 template?

wrote a piece of code about the center filter, and the re-rendered web page didn"t have any special effect. The
code is as follows:

{% set v = "abc123" %}
{{ v|center(1000) }}

is there a god who knows the function of center filter

Mar.20,2021

{{ v|center(1000) }} 1000v 

rendering depends on your label.

<html>
    <body>
        <!---->
        

abc

<!---->

--<span> abc </span>--

<!---->
   abc   
< / body > < / html >
Menu