🔍 搜索结果 ({{ search_results|length }})
{% for result in search_results %}
📄
{% set relative_path = result.path.replace(current_branch + '/' + current_version + '/', '') %}
{{ result.name }}
{% if result.size < 1024 %}
{{ result.size }} B
{% elif result.size < 1024*1024 %}
{{ (result.size/1024)|round(1) }} KB
{% else %}
{{ (result.size/(1024*1024))|round(1) }} MB
{% endif %}
📁 文件列表
大小
{% for item in file_tree %}
{% if item.type == 'dir' %}📁{% else %}📄{% endif %}
{% if item.type == 'dir' %}
{{ item.name }}
{% else %}
{{ item.name }}
{% endif %}
{% if item.type == 'file' %}
{% if item.size < 1024 %}
{{ item.size }} B
{% elif item.size < 1024*1024 %}
{{ (item.size/1024)|round(1) }} KB
{% else %}
{{ (item.size/(1024*1024))|round(1) }} MB
{% endif %}
{% else %}
-
{% endif %}
此目录为空
📖 README.md
加载中...