|
| 1 | +import type { SidebarConfig } from '@vuepress/theme-default'; |
| 2 | +import { commandCategories } from './command_categories'; |
| 3 | + |
| 4 | +export const sidebarRU: SidebarConfig = { |
| 5 | + '/ru/book/': [ |
| 6 | + { |
| 7 | + text: 'Введение', |
| 8 | + link: '/ru/book/README.md', |
| 9 | + collapsible: false, |
| 10 | + }, |
| 11 | + // { |
| 12 | + // text: 'Начало работы', |
| 13 | + // link: '/ru/book/getting_started.md', |
| 14 | + // collapsible: false, |
| 15 | + // children: [ |
| 16 | + // '/ru/book/installation.md', |
| 17 | + // '/ru/book/default_shell.md', |
| 18 | + // '/ru/book/quick_tour.md', |
| 19 | + // '/ru/book/moving_around.md', |
| 20 | + // '/ru/book/thinking_in_nu.md', |
| 21 | + // '/ru/book/cheat_sheet.md', |
| 22 | + // ], |
| 23 | + // }, |
| 24 | + // { |
| 25 | + // text: 'Основы Nu', |
| 26 | + // link: '/nu_fundamentals.md', |
| 27 | + // collapsible: false, |
| 28 | + // children: [ |
| 29 | + // '/ru/book/types_of_data.md', |
| 30 | + // '/ru/book/loading_data.md', |
| 31 | + // '/ru/book/pipelines.md', |
| 32 | + // '/ru/book/working_with_strings.md', |
| 33 | + // '/ru/book/working_with_lists.md', |
| 34 | + // '/ru/book/working_with_tables.md', |
| 35 | + // ], |
| 36 | + // }, |
| 37 | + // { |
| 38 | + // text: 'Программирование в Nu', |
| 39 | + // link: '/programming_in_nu.md', |
| 40 | + // collapsible: false, |
| 41 | + // children: [ |
| 42 | + // '/ru/book/custom_commands.md', |
| 43 | + // '/ru/book/aliases.md', |
| 44 | + // '/ru/book/operators.md', |
| 45 | + // '/ru/book/variables_and_subexpressions.md', |
| 46 | + // '/ru/book/control_flow.md', |
| 47 | + // '/ru/book/scripts.md', |
| 48 | + // '/ru/book/modules.md', |
| 49 | + // '/ru/book/overlays.md', |
| 50 | + // '/ru/book/command_signature.md', |
| 51 | + // '/ru/book/testing.md', |
| 52 | + // '/ru/book/style_guide.md', |
| 53 | + // ], |
| 54 | + // }, |
| 55 | + // { |
| 56 | + // text: 'Nu как оболочка', |
| 57 | + // link: '/nu_as_a_shell.md', |
| 58 | + // collapsible: false, |
| 59 | + // children: [ |
| 60 | + // '/ru/book/configuration.md', |
| 61 | + // '/ru/book/environment.md', |
| 62 | + // '/ru/book/stdout_stderr_exit_codes.md', |
| 63 | + // '/ru/book/escaping.md', |
| 64 | + // '/ru/book/3rdpartyprompts.md', |
| 65 | + // '/ru/book/shells_in_shells.md', |
| 66 | + // '/ru/book/line_editor.md', |
| 67 | + // '/ru/book/externs.md', |
| 68 | + // '/ru/book/custom_completions.md', |
| 69 | + // '/ru/book/coloring_and_theming.md', |
| 70 | + // '/ru/book/hooks.md', |
| 71 | + // '/ru/book/background_task.md', |
| 72 | + // ], |
| 73 | + // }, |
| 74 | + // { |
| 75 | + // text: 'Переход в Nu', |
| 76 | + // link: '/coming_to_nu.md', |
| 77 | + // collapsible: false, |
| 78 | + // children: [ |
| 79 | + // '/ru/book/coming_from_bash.md', |
| 80 | + // '/ru/book/coming_from_cmd.md', |
| 81 | + // '/ru/book/nushell_map.md', |
| 82 | + // '/ru/book/nushell_map_imperative.md', |
| 83 | + // '/ru/book/nushell_map_functional.md', |
| 84 | + // '/ru/book/nushell_operator_map.md', |
| 85 | + // ], |
| 86 | + // }, |
| 87 | + // { |
| 88 | + // text: 'Примечания к дизайну', |
| 89 | + // link: '/design_notes.md', |
| 90 | + // collapsible: false, |
| 91 | + // children: [ |
| 92 | + // '/ru/book/how_nushell_code_gets_run.md' |
| 93 | + // ], |
| 94 | + // }, |
| 95 | + // { |
| 96 | + // text: '(Не очень) Продвинутый', |
| 97 | + // link: '/advanced.md', |
| 98 | + // collapsible: false, |
| 99 | + // children: [ |
| 100 | + // '/ru/book/standard_library.md', |
| 101 | + // '/ru/book/dataframes.md', |
| 102 | + // '/ru/book/metadata.md', |
| 103 | + // '/ru/book/creating_errors.md', |
| 104 | + // '/ru/book/parallelism.md', |
| 105 | + // '/ru/book/plugins.md', |
| 106 | + // '/ru/book/explore.md', |
| 107 | + // ], |
| 108 | + // }, |
| 109 | + ], |
| 110 | +}; |
0 commit comments