我有一个列表,我想从他那里写两列,如下所示:
我有这个:
====== Known Errors ======
1.
2.
3.
.....
47.
我想要这个
====== Known Errors ======
1. 28.
2. 29.
3. 30.
.... ....
27. 47.
我的代码是这样的:
====== Known Errors ======
- [[testlabplus/known_errors/table_not_accessible|Control table not acessible]]
- [[testlabplus/known_errors/calendar_view|Calendar view used by multiple users]]
- [[testlabplus/known_errors/Unknown_Publisher|Unknown Publisher]]
- [[testlabplus/known_errors/error_during_update|Error during the update of TLP to a new version/SP]]
- [[testlabplus/known_errors/calendar_view/doc_new_version|Create new version of a document]]
- [[testlabplus/known_errors/export_ms_proj|Export to MS Project]]
- [[testlabplus/known_errors/save_filter_in_resource|Save filter in Resource planning]]
- [[testlabplus/known_errors/new_order|Create new order]]
- [[testlabplus/known_errors/open_test_report|Open test report]]
- [[testlabplus/known_errors/app_startup|Application startup]]
- [[testlabplus/known_errors/app_startup_tlp|Application 'TLP.exe' startup ]]
- [[testlabplus/known_errors/proj_code_on_order|Project code on an order]]
FIXME
答案 0 :(得分:1)
Wiki文档提供了使用指令columns_list
。
在你的情况下:
====== Known Errors ======
{{columns_list|2|
- [[testlabplus/known_errors/table_not_accessible|Control table not acessible]]
- [[testlabplus/known_errors/calendar_view|Calendar view used by multiple users]]
- [[testlabplus/known_errors/Unknown_Publisher|Unknown Publisher]]
- [[testlabplus/known_errors/error_during_update|Error during the update of TLP to a new version/SP]]
- [[testlabplus/known_errors/calendar_view/doc_new_version|Create new version of a document]]
- [[testlabplus/known_errors/export_ms_proj|Export to MS Project]]
- [[testlabplus/known_errors/save_filter_in_resource|Save filter in Resource planning]]
- [[testlabplus/known_errors/new_order|Create new order]]
- [[testlabplus/known_errors/open_test_report|Open test report]]
- [[testlabplus/known_errors/app_startup|Application startup]]
- [[testlabplus/known_errors/app_startup_tlp|Application 'TLP.exe' startup ]]
- [[testlabplus/known_errors/proj_code_on_order|Project code on an order]]
}}
对于外部链接:
{{columns_list|2|
- [//testlabplus/known_errors/table_not_accessible Control table not acessible]
- [//testlabplus/known_errors/calendar_view Calendar view used by multiple users]
- [//testlabplus/known_errors/Unknown_Publisher Unknown Publisher]
- [//testlabplus/known_errors/error_during_update Error during the update of TLP to a new version/SP]
- [//testlabplus/known_errors/calendar_view/doc_new_version Create new version of a document]
- [//testlabplus/known_errors/export_ms_proj Export to MS Project]
- [//testlabplus/known_errors/save_filter_in_resource Save filter in Resource planning]
- [//testlabplus/known_errors/new_order Create new order]
- [//testlabplus/known_errors/open_test_report Open test report]
- [//testlabplus/known_errors/app_startup Application startup]
- [//testlabplus/known_errors/app_startup_tlp Application 'TLP.exe' startup ]
- [//testlabplus/known_errors/proj_code_on_order Project code on an order]
}}