Want to show some prat of H6 tabs contents as production description

Now using pipeline 6.2.0. It can add a section called product description, where it will cite the content from the H6 tab. And the contents on it are written from product pages in detail. In pipeline 5, when choosing “description tab location below”, it would only show some of the contents, basically the content before

tag. So wants to achieve that effect. But don’t want to use metafiled.

some preview pages: Striver Indoor / Outdoor Flush Mount Smart Ceiling Fan with Dimmable L – SmaFan.com Wants to make it only show the picture before the overview on the top right while showing all contents after “overview” below.

I think that is the liquid code that can make it happen, but don’t know how to modify it. Thanks for any help.

{% when 'description' %}
              <div class="product-description rte rte--column" {{ block.shopify_attributes }}>
                {%- assign product_description_content = product.description | strip -%}
                {%- assign truncate_string = 'products.general.read_more' | t -%}
                {%- assign truncate_html = '<button type="button" class="p underline" data-truncated-button>' | append: truncate_string | append: '</button>' -%}

                {%- if block.settings.style == 'none' -%}
                  {% if block.settings.read_more %}
                    <div class="product-description__holder product-description__holder--truncate" data-truncated-holder>
                      <div class="product-description__inner">
                        <div class="product-description__content" data-truncated-content="product-description__content--truncate">
                          {{ product_description_content }}
                        </div>
                      </div>
                      
                      <div class="product-description__actions">
                        {{ truncate_html }}
                      </div>
                    </div>
                  {% else %}           
                    {{ product.description }}
                  {% endif %}
                {% else %}
                  <div class="tabs-wrapper">
                    {% render 'product-tabs', section: section, block: block, product: product, product_description_content: product_description_content, truncate_html: truncate_html %}
                  </div>
                {%- endif -%}
              </div>