├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── .htaccess ├── 404.html ├── app.css ├── index.html ├── logo.png └── robots.txt ├── config ├── de.yml ├── en.yml ├── es.yml ├── fr.yml ├── it.yml ├── ja.yml └── ru.yml ├── docs ├── de │ ├── 5-minutes.md │ ├── academic │ │ ├── citations.md │ │ ├── custom-templates.md │ │ ├── pomodoro.md │ │ ├── presentations.md │ │ ├── projects.md │ │ ├── readability.md │ │ └── zkn-method.md │ ├── assets │ │ └── app.css │ ├── core │ │ ├── attachments.md │ │ ├── custom-css.md │ │ ├── editor.md │ │ ├── export.md │ │ ├── file-list.md │ │ ├── localisation.md │ │ ├── search.md │ │ └── tables.md │ ├── faq.md │ ├── get-involved.md │ ├── guides │ │ ├── guide-ide.md │ │ ├── guide-notes.md │ │ └── guide-zettelkasten.md │ ├── img │ │ ├── attachment-pane-references.png │ │ ├── attachment_sidebar.png │ │ ├── attachment_sidebar_images.png │ │ ├── back.png │ │ ├── create.png │ │ ├── create_tex_file.png │ │ ├── custom_css_pilcrow.png │ │ ├── custom_css_unsplash.png │ │ ├── export-to-csl-json.png │ │ ├── export.png │ │ ├── file_meta.png │ │ ├── long_markdown_table.png │ │ ├── markdown.png │ │ ├── open.png │ │ ├── pdf_settings_font.png │ │ ├── pomodoro_init.png │ │ ├── pomodoro_run.png │ │ ├── presentations_scripts.png │ │ ├── presentations_styles.png │ │ ├── project_directory.png │ │ ├── settings_advanced.png │ │ ├── settings_autocorrect.png │ │ ├── settings_display.png │ │ ├── settings_editor.png │ │ ├── settings_export.png │ │ ├── settings_general.png │ │ ├── settings_project.png │ │ ├── settings_spellchecking.png │ │ ├── settings_theme.png │ │ ├── settings_zettelkasten.png │ │ ├── sorting_indicators.png │ │ ├── table_active_cell.png │ │ ├── table_with_edge_buttons.png │ │ ├── tags_settings.png │ │ ├── translations_list.png │ │ ├── writing_targets.png │ │ ├── writing_targets_settings.png │ │ ├── zettlr_ide.png │ │ ├── zettlr_notes.png │ │ ├── zettlr_table.png │ │ ├── zettlr_table_movement.png │ │ ├── zettlr_zettelkasten.png │ │ └── zettlt_tex_file.png │ ├── index.md │ ├── install.md │ └── reference │ │ ├── markdown-basics.md │ │ ├── settings.md │ │ ├── shortcuts.md │ │ └── spell-checking.md ├── en │ ├── advanced │ │ ├── assets-manager.md │ │ ├── custom-css.md │ │ ├── custom-templates.md │ │ ├── defaults-files.md │ │ ├── graph.md │ │ ├── pomodoro.md │ │ ├── projects.md │ │ ├── tag-manager.md │ │ ├── text-transforms.md │ │ ├── yaml-frontmatter.md │ │ └── zkn-method.md │ ├── assets │ │ └── app.css │ ├── core │ │ ├── autocorrect.md │ │ ├── citations.md │ │ ├── code-blocks.md │ │ ├── comments.md │ │ ├── export.md │ │ ├── file-manager.md │ │ ├── files.md │ │ ├── import.md │ │ ├── math.md │ │ ├── print-preview.md │ │ ├── readability.md │ │ ├── search.md │ │ ├── sidebar.md │ │ ├── snippets.md │ │ ├── split-view.md │ │ ├── statusbar.md │ │ ├── style-and-grammar.md │ │ ├── tables.md │ │ ├── user-interface.md │ │ ├── workspaces.md │ │ ├── writing-markdown.md │ │ └── writing-statistics.md │ ├── getting-started │ │ ├── a-note-on-security.md │ │ ├── get-involved.md │ │ ├── installing-latex.md │ │ ├── migrating.md │ │ ├── setup.md │ │ └── troubleshooting.md │ ├── guides │ │ ├── journal-latex-template.md │ │ ├── languagetool-local.md │ │ ├── portable.md │ │ └── presentations.md │ ├── img │ │ ├── ConverttoComment.gif │ │ ├── Emc2.png │ │ ├── NewComment.gif │ │ ├── assets_manager.png │ │ ├── code_block_autocomplete.png │ │ ├── create_tex_file.png │ │ ├── custom_css_code_after.png │ │ ├── custom_css_code_before.png │ │ ├── custom_css_font_colors_after.png │ │ ├── custom_css_font_colors_before.png │ │ ├── custom_css_font_colors_md_after.png │ │ ├── custom_css_font_colors_md_before.png │ │ ├── custom_css_horizontal_ruler_after.png │ │ ├── custom_css_horizontal_ruler_before.png │ │ ├── custom_css_maxwidth.png │ │ ├── custom_css_pilcrow.png │ │ ├── custom_css_tags_after.png │ │ ├── custom_css_tags_before.png │ │ ├── custom_css_unsplash.png │ │ ├── custom_css_unsplash_dark.png │ │ ├── custom_css_unsplash_light.png │ │ ├── directory_properties.png │ │ ├── export-to-csl-json.png │ │ ├── file_meta.png │ │ ├── file_tree_roots.png │ │ ├── first_start.png │ │ ├── full_text_search.png │ │ ├── graph_view.png │ │ ├── graph_view_single_component.png │ │ ├── latex_template_body_var.png │ │ ├── latex_template_final_export.png │ │ ├── latex_template_first_export.png │ │ ├── latex_template_move.png │ │ ├── latex_template_test_export.png │ │ ├── logo_small.png │ │ ├── long_markdown_table.png │ │ ├── main_window_v3.png │ │ ├── math_example.png │ │ ├── pandoc_variable_resolution.png │ │ ├── pomodoro_init.png │ │ ├── pomodoro_run.png │ │ ├── presentations_scripts.png │ │ ├── presentations_styles.png │ │ ├── project_directory.png │ │ ├── reference-doc-line.png │ │ ├── settings_advanced.png │ │ ├── settings_autocorrect.png │ │ ├── settings_citations.png │ │ ├── settings_display.png │ │ ├── settings_editor.png │ │ ├── settings_export.png │ │ ├── settings_general.png │ │ ├── settings_spellchecking.png │ │ ├── settings_toolbar.png │ │ ├── settings_zettelkasten.png │ │ ├── sidebar_other_files.png │ │ ├── sidebar_references.png │ │ ├── sidebar_related_files.png │ │ ├── sidebar_toc.png │ │ ├── snippets_example.png │ │ ├── stats_window.png │ │ ├── statusbar.png │ │ ├── statusbar_diagnostics.png │ │ ├── statusbar_diagnostics_panel.png │ │ ├── statusbar_input_mode.png │ │ ├── statusbar_languagetool.png │ │ ├── statusbar_magic_quotes.png │ │ ├── statusbar_readability.png │ │ ├── statusbar_word_chars_cursor.png │ │ ├── table_active_cell.png │ │ ├── table_with_edge_buttons.png │ │ ├── tag_manager.png │ │ ├── tags_settings.png │ │ ├── word-default-styles.png │ │ ├── writing_targets.png │ │ ├── zettlr_add_LaTeX_template.png │ │ ├── zettlr_developer_tools.png │ │ ├── zettlr_developer_tools_css.png │ │ ├── zettlr_table.png │ │ ├── zettlr_table_movement.png │ │ └── zettlr_tex_file.png │ ├── index.md │ └── reference │ │ ├── faq.md │ │ ├── keyboard-shortcuts.md │ │ ├── markdown-basics.md │ │ ├── settings.md │ │ └── spell-checking.md ├── es │ ├── academic │ │ ├── citations.md │ │ ├── custom-templates.md │ │ ├── pomodoro.md │ │ ├── presentations.md │ │ ├── projects.md │ │ ├── readability.md │ │ └── zkn-method.md │ ├── assets │ │ └── app.css │ ├── concepts │ │ ├── context.md │ │ ├── workspaces.md │ │ └── wysiwym.md │ ├── core │ │ ├── assets-manager.md │ │ ├── autocorrect.md │ │ ├── custom-css.md │ │ ├── defaults-files.md │ │ ├── editor-modes.md │ │ ├── editor.md │ │ ├── export.md │ │ ├── file-manager.md │ │ ├── import.md │ │ ├── localisation.md │ │ ├── math.md │ │ ├── print-preview.md │ │ ├── search.md │ │ ├── sidebar.md │ │ ├── snippets.md │ │ ├── tables.md │ │ ├── tabs.md │ │ └── yaml-frontmatter.md │ ├── faq.md │ ├── get-involved.md │ ├── get-started.md │ ├── img │ │ ├── assets_manager.png │ │ ├── create_tex_file.png │ │ ├── custom_css_maxwidth.png │ │ ├── custom_css_pilcrow.png │ │ ├── custom_css_unsplash.png │ │ ├── directory_properties.png │ │ ├── export-to-csl-json.png │ │ ├── file_meta.png │ │ ├── file_tree_roots.png │ │ ├── first_start.png │ │ ├── full_text_search.png │ │ ├── internal_linking_tip.gif │ │ ├── long_markdown_table.png │ │ ├── pandoc_variable_resolution.png │ │ ├── pomodoro_init.png │ │ ├── pomodoro_run.png │ │ ├── presentations_scripts.png │ │ ├── presentations_styles.png │ │ ├── project_directory.png │ │ ├── settings_advanced.png │ │ ├── settings_autocorrect.png │ │ ├── settings_display.png │ │ ├── settings_editor.png │ │ ├── settings_export.png │ │ ├── settings_general.png │ │ ├── settings_spellchecking.png │ │ ├── settings_zettelkasten.png │ │ ├── sidebar_other_files.png │ │ ├── sidebar_references.png │ │ ├── sidebar_related_files.png │ │ ├── sidebar_toc.png │ │ ├── snippets_example.png │ │ ├── table_active_cell.png │ │ ├── table_with_edge_buttons.png │ │ ├── tags_settings.png │ │ ├── translations_list.png │ │ ├── writing_targets.png │ │ ├── zettlr_add_LaTeX_template.png │ │ ├── zettlr_developer_tools.png │ │ ├── zettlr_developer_tools_css.png │ │ ├── zettlr_table.png │ │ ├── zettlr_table_movement.png │ │ └── zettlr_tex_file.png │ ├── index.md │ ├── install.md │ ├── installing-latex.md │ ├── portable.md │ ├── reference │ │ ├── keyboard-shortcuts.md │ │ ├── markdown-basics.md │ │ ├── settings.md │ │ └── spell-checking.md │ └── troubleshooting.md ├── fr │ ├── academic │ │ ├── citations.md │ │ ├── custom-templates.md │ │ ├── pomodoro.md │ │ ├── presentations.md │ │ ├── projects.md │ │ ├── readability.md │ │ └── zkn-method.md │ ├── assets │ │ └── app.css │ ├── concepts │ │ ├── context.md │ │ ├── roots.md │ │ └── wysiwym.md │ ├── core │ │ ├── assets-manager.md │ │ ├── attachments.md │ │ ├── autocorrect.md │ │ ├── custom-css.md │ │ ├── defaults-files.md │ │ ├── editor.md │ │ ├── export.md │ │ ├── file-list.md │ │ ├── import.md │ │ ├── localisation.md │ │ ├── math.md │ │ ├── print-preview.md │ │ ├── search.md │ │ ├── snippets.md │ │ ├── tables.md │ │ ├── tabs.md │ │ └── yaml-frontmatter.md │ ├── faq.md │ ├── get-involved.md │ ├── get-started.md │ ├── guides │ │ ├── guide-ide.md │ │ ├── guide-notes.md │ │ └── guide-zettelkasten.md │ ├── img │ │ ├── assets_manager.png │ │ ├── attachment-pane-references.png │ │ ├── attachment_sidebar.png │ │ ├── attachment_sidebar_images.png │ │ ├── back.png │ │ ├── create.png │ │ ├── create_tex_file.png │ │ ├── custom_css_maxwidth.png │ │ ├── custom_css_pilcrow.png │ │ ├── custom_css_unsplash.png │ │ ├── export-to-csl-json.png │ │ ├── export.png │ │ ├── file_meta.png │ │ ├── file_tree_roots.png │ │ ├── first_start.png │ │ ├── internal_linking_tip.gif │ │ ├── long_markdown_table.png │ │ ├── markdown.png │ │ ├── open.png │ │ ├── pdf_settings_font.png │ │ ├── pomodoro_init.png │ │ ├── pomodoro_run.png │ │ ├── presentations_scripts.png │ │ ├── presentations_styles.png │ │ ├── project_directory.png │ │ ├── settings_advanced.png │ │ ├── settings_autocorrect.png │ │ ├── settings_display.png │ │ ├── settings_editor.png │ │ ├── settings_export.png │ │ ├── settings_general.png │ │ ├── settings_project.png │ │ ├── settings_spellchecking.png │ │ ├── settings_theme.png │ │ ├── settings_zettelkasten.png │ │ ├── snippets_example.png │ │ ├── sorting_indicators.png │ │ ├── table_active_cell.png │ │ ├── table_with_edge_buttons.png │ │ ├── tags_settings.png │ │ ├── transient_tabs.png │ │ ├── translations_list.png │ │ ├── writing_targets.png │ │ ├── writing_targets_settings.png │ │ ├── zettlr_developer_tools.png │ │ ├── zettlr_developer_tools_css.png │ │ ├── zettlr_ide.png │ │ ├── zettlr_notes.png │ │ ├── zettlr_table.png │ │ ├── zettlr_table_movement.png │ │ ├── zettlr_zettelkasten.png │ │ └── zettlt_tex_file.png │ ├── index.md │ ├── install.md │ ├── installing-latex.md │ ├── installing-pandoc.md │ └── reference │ │ ├── faq.md │ │ ├── keyboard-shortcuts.md │ │ ├── markdown-basics.md │ │ ├── settings.md │ │ └── spell-checking.md ├── it │ ├── 5-minutes.md │ ├── academic │ │ ├── citations.md │ │ ├── custom-templates.md │ │ ├── pomodoro.md │ │ ├── presentations.md │ │ ├── projects.md │ │ ├── readability.md │ │ └── zkn-method.md │ ├── assets │ │ └── app.css │ ├── core │ │ ├── attachments.md │ │ ├── custom-css.md │ │ ├── editor.md │ │ ├── export.md │ │ ├── file-list.md │ │ ├── localisation.md │ │ ├── search.md │ │ └── tables.md │ ├── faq.md │ ├── get-involved.md │ ├── guides │ │ ├── guide-ide.md │ │ ├── guide-notes.md │ │ └── guide-zettelkasten.md │ ├── img │ │ ├── attachment-pane-references.png │ │ ├── attachment_sidebar.png │ │ ├── attachment_sidebar_images.png │ │ ├── back.png │ │ ├── create.png │ │ ├── create_tex_file.png │ │ ├── custom_css_pilcrow.png │ │ ├── custom_css_unsplash.png │ │ ├── export-to-csl-json.png │ │ ├── export.png │ │ ├── file_meta.png │ │ ├── long_markdown_table.png │ │ ├── markdown.png │ │ ├── open.png │ │ ├── pdf_settings_font.png │ │ ├── pomodoro_init.png │ │ ├── pomodoro_run.png │ │ ├── presentations_scripts.png │ │ ├── presentations_styles.png │ │ ├── project_directory.png │ │ ├── settings_advanced.png │ │ ├── settings_autocorrect.png │ │ ├── settings_display.png │ │ ├── settings_editor.png │ │ ├── settings_export.png │ │ ├── settings_general.png │ │ ├── settings_project.png │ │ ├── settings_spellchecking.png │ │ ├── settings_theme.png │ │ ├── settings_zettelkasten.png │ │ ├── sorting_indicators.png │ │ ├── table_active_cell.png │ │ ├── table_with_edge_buttons.png │ │ ├── tags_settings.png │ │ ├── translations_list.png │ │ ├── writing_targets.png │ │ ├── writing_targets_settings.png │ │ ├── zettlr_ide.png │ │ ├── zettlr_notes.png │ │ ├── zettlr_table.png │ │ ├── zettlr_table_movement.png │ │ ├── zettlr_zettelkasten.png │ │ └── zettlt_tex_file.png │ ├── index.md │ ├── install.md │ └── reference │ │ ├── markdown-basics.md │ │ ├── settings.md │ │ ├── shortcuts.md │ │ └── spell-checking.md ├── ja │ ├── academic │ │ ├── citations.md │ │ ├── custom-templates.md │ │ ├── pomodoro.md │ │ ├── presentations.md │ │ ├── projects.md │ │ ├── readability.md │ │ └── zkn-method.md │ ├── assets │ │ └── app.css │ ├── concepts │ │ ├── context.md │ │ ├── workspaces.md │ │ └── wysiwym.md │ ├── core │ │ ├── assets-manager.md │ │ ├── autocorrect.md │ │ ├── custom-css.md │ │ ├── defaults-files.md │ │ ├── editor-modes.md │ │ ├── editor.md │ │ ├── export.md │ │ ├── file-manager.md │ │ ├── import.md │ │ ├── localisation.md │ │ ├── math.md │ │ ├── print-preview.md │ │ ├── search.md │ │ ├── sidebar.md │ │ ├── snippets.md │ │ ├── tables.md │ │ ├── tabs.md │ │ └── yaml-frontmatter.md │ ├── faq.md │ ├── get-involved.md │ ├── get-started.md │ ├── img │ │ ├── assets_manager.png │ │ ├── create_tex_file.png │ │ ├── custom_css_maxwidth.png │ │ ├── custom_css_pilcrow.png │ │ ├── custom_css_unsplash.png │ │ ├── directory_properties.png │ │ ├── export-to-csl-json.png │ │ ├── file_meta.png │ │ ├── file_tree_roots.png │ │ ├── first_start.png │ │ ├── full_text_search.png │ │ ├── internal_linking_tip.gif │ │ ├── long_markdown_table.png │ │ ├── pandoc_variable_resolution.png │ │ ├── pomodoro_init.png │ │ ├── pomodoro_run.png │ │ ├── presentations_scripts.png │ │ ├── presentations_styles.png │ │ ├── project_directory.png │ │ ├── settings_advanced.png │ │ ├── settings_autocorrect.png │ │ ├── settings_display.png │ │ ├── settings_editor.png │ │ ├── settings_export.png │ │ ├── settings_general.png │ │ ├── settings_spellchecking.png │ │ ├── settings_zettelkasten.png │ │ ├── sidebar_other_files.png │ │ ├── sidebar_references.png │ │ ├── sidebar_related_files.png │ │ ├── sidebar_toc.png │ │ ├── snippets_example.png │ │ ├── table_active_cell.png │ │ ├── table_with_edge_buttons.png │ │ ├── tags_settings.png │ │ ├── translations_list.png │ │ ├── writing_targets.png │ │ ├── zettlr_add_LaTeX_template.png │ │ ├── zettlr_developer_tools.png │ │ ├── zettlr_developer_tools_css.png │ │ ├── zettlr_table.png │ │ ├── zettlr_table_movement.png │ │ └── zettlr_tex_file.png │ ├── index.md │ ├── install.md │ ├── installing-latex.md │ ├── portable.md │ ├── reference │ │ ├── keyboard-shortcuts.md │ │ ├── markdown-basics.md │ │ ├── settings.md │ │ └── spell-checking.md │ └── troubleshooting.md └── ru │ ├── advanced │ ├── assets-manager.md │ ├── custom-css.md │ ├── custom-templates.md │ ├── defaults-files.md │ ├── graph.md │ ├── pomodoro.md │ ├── projects.md │ ├── tag-manager.md │ ├── yaml-frontmatter.md │ └── zkn-method.md │ ├── assets │ └── app.css │ ├── core │ ├── autocorrect.md │ ├── citations.md │ ├── comments.md │ ├── export.md │ ├── file-manager.md │ ├── files.md │ ├── import.md │ ├── math.md │ ├── print-preview.md │ ├── readability.md │ ├── search.md │ ├── sidebar.md │ ├── snippets.md │ ├── split-view.md │ ├── statusbar.md │ ├── style-and-grammar.md │ ├── tables.md │ ├── user-interface.md │ ├── workspaces.md │ ├── writing-markdown.md │ └── writing-statistics.md │ ├── getting-started │ ├── a-note-on-security.md │ ├── get-involved.md │ ├── installing-latex.md │ ├── migrating.md │ ├── setup.md │ └── troubleshooting.md │ ├── guides │ ├── journal-latex-template.md │ ├── languagetool-local.md │ ├── portable.md │ └── presentations.md │ ├── img │ ├── ConverttoComment.gif │ ├── Emc2.png │ ├── NewComment.gif │ ├── assets_manager.png │ ├── create_tex_file.png │ ├── custom_css_maxwidth.png │ ├── custom_css_pilcrow.png │ ├── custom_css_unsplash.png │ ├── custom_css_unsplash_dark.png │ ├── custom_css_unsplash_light.png │ ├── directory_properties.png │ ├── export-to-csl-json.png │ ├── file_meta.png │ ├── file_tree_roots.png │ ├── first_start.png │ ├── full_text_search.png │ ├── graph_view.png │ ├── graph_view_single_component.png │ ├── latex_template_body_var.png │ ├── latex_template_final_export.png │ ├── latex_template_first_export.png │ ├── latex_template_move.png │ ├── latex_template_test_export.png │ ├── logo_small.png │ ├── long_markdown_table.png │ ├── main_window_v3.png │ ├── math_example.png │ ├── pandoc_variable_resolution.png │ ├── pomodoro_init.png │ ├── pomodoro_run.png │ ├── presentations_scripts.png │ ├── presentations_styles.png │ ├── project_directory.png │ ├── reference-doc-line.png │ ├── settings_advanced.png │ ├── settings_autocorrect.png │ ├── settings_citations.png │ ├── settings_display.png │ ├── settings_editor.png │ ├── settings_export.png │ ├── settings_general.png │ ├── settings_spellchecking.png │ ├── settings_toolbar.png │ ├── settings_zettelkasten.png │ ├── sidebar_other_files.png │ ├── sidebar_references.png │ ├── sidebar_related_files.png │ ├── sidebar_toc.png │ ├── snippets_example.png │ ├── stats_window.png │ ├── statusbar.png │ ├── statusbar_diagnostics.png │ ├── statusbar_diagnostics_panel.png │ ├── statusbar_input_mode.png │ ├── statusbar_languagetool.png │ ├── statusbar_magic_quotes.png │ ├── statusbar_readability.png │ ├── statusbar_word_chars_cursor.png │ ├── table_active_cell.png │ ├── table_with_edge_buttons.png │ ├── tag_manager.png │ ├── tags_settings.png │ ├── word-default-styles.png │ ├── writing_targets.png │ ├── zettlr_add_LaTeX_template.png │ ├── zettlr_developer_tools.png │ ├── zettlr_developer_tools_css.png │ ├── zettlr_table.png │ ├── zettlr_table_movement.png │ └── zettlr_tex_file.png │ ├── index.md │ └── reference │ ├── faq.md │ ├── keyboard-shortcuts.md │ ├── markdown-basics.md │ ├── settings.md │ └── spell-checking.md ├── scripts ├── build.sh └── serve.sh └── theme_override └── main.html /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/README.md -------------------------------------------------------------------------------- /assets/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/assets/.htaccess -------------------------------------------------------------------------------- /assets/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/assets/404.html -------------------------------------------------------------------------------- /assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/assets/app.css -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/assets/robots.txt -------------------------------------------------------------------------------- /config/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/de.yml -------------------------------------------------------------------------------- /config/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/en.yml -------------------------------------------------------------------------------- /config/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/es.yml -------------------------------------------------------------------------------- /config/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/fr.yml -------------------------------------------------------------------------------- /config/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/it.yml -------------------------------------------------------------------------------- /config/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/ja.yml -------------------------------------------------------------------------------- /config/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/config/ru.yml -------------------------------------------------------------------------------- /docs/de/5-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/5-minutes.md -------------------------------------------------------------------------------- /docs/de/academic/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/citations.md -------------------------------------------------------------------------------- /docs/de/academic/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/custom-templates.md -------------------------------------------------------------------------------- /docs/de/academic/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/pomodoro.md -------------------------------------------------------------------------------- /docs/de/academic/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/presentations.md -------------------------------------------------------------------------------- /docs/de/academic/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/projects.md -------------------------------------------------------------------------------- /docs/de/academic/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/readability.md -------------------------------------------------------------------------------- /docs/de/academic/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/academic/zkn-method.md -------------------------------------------------------------------------------- /docs/de/assets/app.css: -------------------------------------------------------------------------------- 1 | ../../../assets/app.css -------------------------------------------------------------------------------- /docs/de/core/attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/attachments.md -------------------------------------------------------------------------------- /docs/de/core/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/custom-css.md -------------------------------------------------------------------------------- /docs/de/core/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/editor.md -------------------------------------------------------------------------------- /docs/de/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/export.md -------------------------------------------------------------------------------- /docs/de/core/file-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/file-list.md -------------------------------------------------------------------------------- /docs/de/core/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/localisation.md -------------------------------------------------------------------------------- /docs/de/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/search.md -------------------------------------------------------------------------------- /docs/de/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/core/tables.md -------------------------------------------------------------------------------- /docs/de/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/faq.md -------------------------------------------------------------------------------- /docs/de/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/get-involved.md -------------------------------------------------------------------------------- /docs/de/guides/guide-ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/guides/guide-ide.md -------------------------------------------------------------------------------- /docs/de/guides/guide-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/guides/guide-notes.md -------------------------------------------------------------------------------- /docs/de/guides/guide-zettelkasten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/guides/guide-zettelkasten.md -------------------------------------------------------------------------------- /docs/de/img/attachment-pane-references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/attachment-pane-references.png -------------------------------------------------------------------------------- /docs/de/img/attachment_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/attachment_sidebar.png -------------------------------------------------------------------------------- /docs/de/img/attachment_sidebar_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/attachment_sidebar_images.png -------------------------------------------------------------------------------- /docs/de/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/back.png -------------------------------------------------------------------------------- /docs/de/img/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/create.png -------------------------------------------------------------------------------- /docs/de/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/de/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/de/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/de/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/de/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/export.png -------------------------------------------------------------------------------- /docs/de/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/file_meta.png -------------------------------------------------------------------------------- /docs/de/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/de/img/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/markdown.png -------------------------------------------------------------------------------- /docs/de/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/open.png -------------------------------------------------------------------------------- /docs/de/img/pdf_settings_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/pdf_settings_font.png -------------------------------------------------------------------------------- /docs/de/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/de/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/de/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/de/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/de/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/project_directory.png -------------------------------------------------------------------------------- /docs/de/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/de/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/de/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_display.png -------------------------------------------------------------------------------- /docs/de/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_editor.png -------------------------------------------------------------------------------- /docs/de/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_export.png -------------------------------------------------------------------------------- /docs/de/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_general.png -------------------------------------------------------------------------------- /docs/de/img/settings_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_project.png -------------------------------------------------------------------------------- /docs/de/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/de/img/settings_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_theme.png -------------------------------------------------------------------------------- /docs/de/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/de/img/sorting_indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/sorting_indicators.png -------------------------------------------------------------------------------- /docs/de/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/de/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/de/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/tags_settings.png -------------------------------------------------------------------------------- /docs/de/img/translations_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/translations_list.png -------------------------------------------------------------------------------- /docs/de/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/writing_targets.png -------------------------------------------------------------------------------- /docs/de/img/writing_targets_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/writing_targets_settings.png -------------------------------------------------------------------------------- /docs/de/img/zettlr_ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/zettlr_ide.png -------------------------------------------------------------------------------- /docs/de/img/zettlr_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/zettlr_notes.png -------------------------------------------------------------------------------- /docs/de/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/de/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/de/img/zettlr_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/zettlr_zettelkasten.png -------------------------------------------------------------------------------- /docs/de/img/zettlt_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/img/zettlt_tex_file.png -------------------------------------------------------------------------------- /docs/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/index.md -------------------------------------------------------------------------------- /docs/de/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/install.md -------------------------------------------------------------------------------- /docs/de/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/de/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/reference/settings.md -------------------------------------------------------------------------------- /docs/de/reference/shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/reference/shortcuts.md -------------------------------------------------------------------------------- /docs/de/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/de/reference/spell-checking.md -------------------------------------------------------------------------------- /docs/en/advanced/assets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/assets-manager.md -------------------------------------------------------------------------------- /docs/en/advanced/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/custom-css.md -------------------------------------------------------------------------------- /docs/en/advanced/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/custom-templates.md -------------------------------------------------------------------------------- /docs/en/advanced/defaults-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/defaults-files.md -------------------------------------------------------------------------------- /docs/en/advanced/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/graph.md -------------------------------------------------------------------------------- /docs/en/advanced/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/pomodoro.md -------------------------------------------------------------------------------- /docs/en/advanced/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/projects.md -------------------------------------------------------------------------------- /docs/en/advanced/tag-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/tag-manager.md -------------------------------------------------------------------------------- /docs/en/advanced/text-transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/text-transforms.md -------------------------------------------------------------------------------- /docs/en/advanced/yaml-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/yaml-frontmatter.md -------------------------------------------------------------------------------- /docs/en/advanced/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/advanced/zkn-method.md -------------------------------------------------------------------------------- /docs/en/assets/app.css: -------------------------------------------------------------------------------- 1 | ../../../assets/app.css -------------------------------------------------------------------------------- /docs/en/core/autocorrect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/autocorrect.md -------------------------------------------------------------------------------- /docs/en/core/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/citations.md -------------------------------------------------------------------------------- /docs/en/core/code-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/code-blocks.md -------------------------------------------------------------------------------- /docs/en/core/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/comments.md -------------------------------------------------------------------------------- /docs/en/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/export.md -------------------------------------------------------------------------------- /docs/en/core/file-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/file-manager.md -------------------------------------------------------------------------------- /docs/en/core/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/files.md -------------------------------------------------------------------------------- /docs/en/core/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/import.md -------------------------------------------------------------------------------- /docs/en/core/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/math.md -------------------------------------------------------------------------------- /docs/en/core/print-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/print-preview.md -------------------------------------------------------------------------------- /docs/en/core/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/readability.md -------------------------------------------------------------------------------- /docs/en/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/search.md -------------------------------------------------------------------------------- /docs/en/core/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/sidebar.md -------------------------------------------------------------------------------- /docs/en/core/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/snippets.md -------------------------------------------------------------------------------- /docs/en/core/split-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/split-view.md -------------------------------------------------------------------------------- /docs/en/core/statusbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/statusbar.md -------------------------------------------------------------------------------- /docs/en/core/style-and-grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/style-and-grammar.md -------------------------------------------------------------------------------- /docs/en/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/tables.md -------------------------------------------------------------------------------- /docs/en/core/user-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/user-interface.md -------------------------------------------------------------------------------- /docs/en/core/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/workspaces.md -------------------------------------------------------------------------------- /docs/en/core/writing-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/writing-markdown.md -------------------------------------------------------------------------------- /docs/en/core/writing-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/core/writing-statistics.md -------------------------------------------------------------------------------- /docs/en/getting-started/a-note-on-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/getting-started/a-note-on-security.md -------------------------------------------------------------------------------- /docs/en/getting-started/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/getting-started/get-involved.md -------------------------------------------------------------------------------- /docs/en/getting-started/installing-latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/getting-started/installing-latex.md -------------------------------------------------------------------------------- /docs/en/getting-started/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/getting-started/migrating.md -------------------------------------------------------------------------------- /docs/en/getting-started/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/getting-started/setup.md -------------------------------------------------------------------------------- /docs/en/getting-started/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/getting-started/troubleshooting.md -------------------------------------------------------------------------------- /docs/en/guides/journal-latex-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/guides/journal-latex-template.md -------------------------------------------------------------------------------- /docs/en/guides/languagetool-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/guides/languagetool-local.md -------------------------------------------------------------------------------- /docs/en/guides/portable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/guides/portable.md -------------------------------------------------------------------------------- /docs/en/guides/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/guides/presentations.md -------------------------------------------------------------------------------- /docs/en/img/ConverttoComment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/ConverttoComment.gif -------------------------------------------------------------------------------- /docs/en/img/Emc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/Emc2.png -------------------------------------------------------------------------------- /docs/en/img/NewComment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/NewComment.gif -------------------------------------------------------------------------------- /docs/en/img/assets_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/assets_manager.png -------------------------------------------------------------------------------- /docs/en/img/code_block_autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/code_block_autocomplete.png -------------------------------------------------------------------------------- /docs/en/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_code_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_code_after.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_code_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_code_before.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_font_colors_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_font_colors_after.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_font_colors_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_font_colors_before.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_font_colors_md_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_font_colors_md_after.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_font_colors_md_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_font_colors_md_before.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_horizontal_ruler_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_horizontal_ruler_after.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_horizontal_ruler_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_horizontal_ruler_before.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_maxwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_maxwidth.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_tags_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_tags_after.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_tags_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_tags_before.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_unsplash_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_unsplash_dark.png -------------------------------------------------------------------------------- /docs/en/img/custom_css_unsplash_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/custom_css_unsplash_light.png -------------------------------------------------------------------------------- /docs/en/img/directory_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/directory_properties.png -------------------------------------------------------------------------------- /docs/en/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/en/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/file_meta.png -------------------------------------------------------------------------------- /docs/en/img/file_tree_roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/file_tree_roots.png -------------------------------------------------------------------------------- /docs/en/img/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/first_start.png -------------------------------------------------------------------------------- /docs/en/img/full_text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/full_text_search.png -------------------------------------------------------------------------------- /docs/en/img/graph_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/graph_view.png -------------------------------------------------------------------------------- /docs/en/img/graph_view_single_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/graph_view_single_component.png -------------------------------------------------------------------------------- /docs/en/img/latex_template_body_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/latex_template_body_var.png -------------------------------------------------------------------------------- /docs/en/img/latex_template_final_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/latex_template_final_export.png -------------------------------------------------------------------------------- /docs/en/img/latex_template_first_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/latex_template_first_export.png -------------------------------------------------------------------------------- /docs/en/img/latex_template_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/latex_template_move.png -------------------------------------------------------------------------------- /docs/en/img/latex_template_test_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/latex_template_test_export.png -------------------------------------------------------------------------------- /docs/en/img/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/logo_small.png -------------------------------------------------------------------------------- /docs/en/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/en/img/main_window_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/main_window_v3.png -------------------------------------------------------------------------------- /docs/en/img/math_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/math_example.png -------------------------------------------------------------------------------- /docs/en/img/pandoc_variable_resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/pandoc_variable_resolution.png -------------------------------------------------------------------------------- /docs/en/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/en/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/en/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/en/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/en/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/project_directory.png -------------------------------------------------------------------------------- /docs/en/img/reference-doc-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/reference-doc-line.png -------------------------------------------------------------------------------- /docs/en/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/en/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/en/img/settings_citations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_citations.png -------------------------------------------------------------------------------- /docs/en/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_display.png -------------------------------------------------------------------------------- /docs/en/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_editor.png -------------------------------------------------------------------------------- /docs/en/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_export.png -------------------------------------------------------------------------------- /docs/en/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_general.png -------------------------------------------------------------------------------- /docs/en/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/en/img/settings_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_toolbar.png -------------------------------------------------------------------------------- /docs/en/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/en/img/sidebar_other_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/sidebar_other_files.png -------------------------------------------------------------------------------- /docs/en/img/sidebar_references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/sidebar_references.png -------------------------------------------------------------------------------- /docs/en/img/sidebar_related_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/sidebar_related_files.png -------------------------------------------------------------------------------- /docs/en/img/sidebar_toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/sidebar_toc.png -------------------------------------------------------------------------------- /docs/en/img/snippets_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/snippets_example.png -------------------------------------------------------------------------------- /docs/en/img/stats_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/stats_window.png -------------------------------------------------------------------------------- /docs/en/img/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_diagnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_diagnostics.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_diagnostics_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_diagnostics_panel.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_input_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_input_mode.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_languagetool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_languagetool.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_magic_quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_magic_quotes.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_readability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_readability.png -------------------------------------------------------------------------------- /docs/en/img/statusbar_word_chars_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/statusbar_word_chars_cursor.png -------------------------------------------------------------------------------- /docs/en/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/en/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/en/img/tag_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/tag_manager.png -------------------------------------------------------------------------------- /docs/en/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/tags_settings.png -------------------------------------------------------------------------------- /docs/en/img/word-default-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/word-default-styles.png -------------------------------------------------------------------------------- /docs/en/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/writing_targets.png -------------------------------------------------------------------------------- /docs/en/img/zettlr_add_LaTeX_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/zettlr_add_LaTeX_template.png -------------------------------------------------------------------------------- /docs/en/img/zettlr_developer_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/zettlr_developer_tools.png -------------------------------------------------------------------------------- /docs/en/img/zettlr_developer_tools_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/zettlr_developer_tools_css.png -------------------------------------------------------------------------------- /docs/en/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/en/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/en/img/zettlr_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/img/zettlr_tex_file.png -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/en/reference/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/reference/faq.md -------------------------------------------------------------------------------- /docs/en/reference/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/reference/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/en/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/en/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/reference/settings.md -------------------------------------------------------------------------------- /docs/en/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/en/reference/spell-checking.md -------------------------------------------------------------------------------- /docs/es/academic/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/citations.md -------------------------------------------------------------------------------- /docs/es/academic/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/custom-templates.md -------------------------------------------------------------------------------- /docs/es/academic/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/pomodoro.md -------------------------------------------------------------------------------- /docs/es/academic/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/presentations.md -------------------------------------------------------------------------------- /docs/es/academic/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/projects.md -------------------------------------------------------------------------------- /docs/es/academic/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/readability.md -------------------------------------------------------------------------------- /docs/es/academic/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/academic/zkn-method.md -------------------------------------------------------------------------------- /docs/es/assets/app.css: -------------------------------------------------------------------------------- 1 | ../../../assets/app.css -------------------------------------------------------------------------------- /docs/es/concepts/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/concepts/context.md -------------------------------------------------------------------------------- /docs/es/concepts/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/concepts/workspaces.md -------------------------------------------------------------------------------- /docs/es/concepts/wysiwym.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/concepts/wysiwym.md -------------------------------------------------------------------------------- /docs/es/core/assets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/assets-manager.md -------------------------------------------------------------------------------- /docs/es/core/autocorrect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/autocorrect.md -------------------------------------------------------------------------------- /docs/es/core/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/custom-css.md -------------------------------------------------------------------------------- /docs/es/core/defaults-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/defaults-files.md -------------------------------------------------------------------------------- /docs/es/core/editor-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/editor-modes.md -------------------------------------------------------------------------------- /docs/es/core/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/editor.md -------------------------------------------------------------------------------- /docs/es/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/export.md -------------------------------------------------------------------------------- /docs/es/core/file-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/file-manager.md -------------------------------------------------------------------------------- /docs/es/core/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/import.md -------------------------------------------------------------------------------- /docs/es/core/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/localisation.md -------------------------------------------------------------------------------- /docs/es/core/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/math.md -------------------------------------------------------------------------------- /docs/es/core/print-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/print-preview.md -------------------------------------------------------------------------------- /docs/es/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/search.md -------------------------------------------------------------------------------- /docs/es/core/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/sidebar.md -------------------------------------------------------------------------------- /docs/es/core/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/snippets.md -------------------------------------------------------------------------------- /docs/es/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/tables.md -------------------------------------------------------------------------------- /docs/es/core/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/tabs.md -------------------------------------------------------------------------------- /docs/es/core/yaml-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/core/yaml-frontmatter.md -------------------------------------------------------------------------------- /docs/es/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/faq.md -------------------------------------------------------------------------------- /docs/es/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/get-involved.md -------------------------------------------------------------------------------- /docs/es/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/get-started.md -------------------------------------------------------------------------------- /docs/es/img/assets_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/assets_manager.png -------------------------------------------------------------------------------- /docs/es/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/es/img/custom_css_maxwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/custom_css_maxwidth.png -------------------------------------------------------------------------------- /docs/es/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/es/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/es/img/directory_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/directory_properties.png -------------------------------------------------------------------------------- /docs/es/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/es/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/file_meta.png -------------------------------------------------------------------------------- /docs/es/img/file_tree_roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/file_tree_roots.png -------------------------------------------------------------------------------- /docs/es/img/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/first_start.png -------------------------------------------------------------------------------- /docs/es/img/full_text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/full_text_search.png -------------------------------------------------------------------------------- /docs/es/img/internal_linking_tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/internal_linking_tip.gif -------------------------------------------------------------------------------- /docs/es/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/es/img/pandoc_variable_resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/pandoc_variable_resolution.png -------------------------------------------------------------------------------- /docs/es/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/es/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/es/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/es/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/es/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/project_directory.png -------------------------------------------------------------------------------- /docs/es/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/es/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/es/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_display.png -------------------------------------------------------------------------------- /docs/es/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_editor.png -------------------------------------------------------------------------------- /docs/es/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_export.png -------------------------------------------------------------------------------- /docs/es/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_general.png -------------------------------------------------------------------------------- /docs/es/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/es/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/es/img/sidebar_other_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/sidebar_other_files.png -------------------------------------------------------------------------------- /docs/es/img/sidebar_references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/sidebar_references.png -------------------------------------------------------------------------------- /docs/es/img/sidebar_related_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/sidebar_related_files.png -------------------------------------------------------------------------------- /docs/es/img/sidebar_toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/sidebar_toc.png -------------------------------------------------------------------------------- /docs/es/img/snippets_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/snippets_example.png -------------------------------------------------------------------------------- /docs/es/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/es/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/es/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/tags_settings.png -------------------------------------------------------------------------------- /docs/es/img/translations_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/translations_list.png -------------------------------------------------------------------------------- /docs/es/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/writing_targets.png -------------------------------------------------------------------------------- /docs/es/img/zettlr_add_LaTeX_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/zettlr_add_LaTeX_template.png -------------------------------------------------------------------------------- /docs/es/img/zettlr_developer_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/zettlr_developer_tools.png -------------------------------------------------------------------------------- /docs/es/img/zettlr_developer_tools_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/zettlr_developer_tools_css.png -------------------------------------------------------------------------------- /docs/es/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/es/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/es/img/zettlr_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/img/zettlr_tex_file.png -------------------------------------------------------------------------------- /docs/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/index.md -------------------------------------------------------------------------------- /docs/es/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/install.md -------------------------------------------------------------------------------- /docs/es/installing-latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/installing-latex.md -------------------------------------------------------------------------------- /docs/es/portable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/portable.md -------------------------------------------------------------------------------- /docs/es/reference/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/reference/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/es/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/es/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/reference/settings.md -------------------------------------------------------------------------------- /docs/es/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/reference/spell-checking.md -------------------------------------------------------------------------------- /docs/es/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/es/troubleshooting.md -------------------------------------------------------------------------------- /docs/fr/academic/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/citations.md -------------------------------------------------------------------------------- /docs/fr/academic/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/custom-templates.md -------------------------------------------------------------------------------- /docs/fr/academic/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/pomodoro.md -------------------------------------------------------------------------------- /docs/fr/academic/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/presentations.md -------------------------------------------------------------------------------- /docs/fr/academic/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/projects.md -------------------------------------------------------------------------------- /docs/fr/academic/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/readability.md -------------------------------------------------------------------------------- /docs/fr/academic/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/academic/zkn-method.md -------------------------------------------------------------------------------- /docs/fr/assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/assets/app.css -------------------------------------------------------------------------------- /docs/fr/concepts/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/concepts/context.md -------------------------------------------------------------------------------- /docs/fr/concepts/roots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/concepts/roots.md -------------------------------------------------------------------------------- /docs/fr/concepts/wysiwym.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/concepts/wysiwym.md -------------------------------------------------------------------------------- /docs/fr/core/assets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/assets-manager.md -------------------------------------------------------------------------------- /docs/fr/core/attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/attachments.md -------------------------------------------------------------------------------- /docs/fr/core/autocorrect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/autocorrect.md -------------------------------------------------------------------------------- /docs/fr/core/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/custom-css.md -------------------------------------------------------------------------------- /docs/fr/core/defaults-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/defaults-files.md -------------------------------------------------------------------------------- /docs/fr/core/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/editor.md -------------------------------------------------------------------------------- /docs/fr/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/export.md -------------------------------------------------------------------------------- /docs/fr/core/file-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/file-list.md -------------------------------------------------------------------------------- /docs/fr/core/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/import.md -------------------------------------------------------------------------------- /docs/fr/core/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/localisation.md -------------------------------------------------------------------------------- /docs/fr/core/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/math.md -------------------------------------------------------------------------------- /docs/fr/core/print-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/print-preview.md -------------------------------------------------------------------------------- /docs/fr/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/search.md -------------------------------------------------------------------------------- /docs/fr/core/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/snippets.md -------------------------------------------------------------------------------- /docs/fr/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/tables.md -------------------------------------------------------------------------------- /docs/fr/core/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/tabs.md -------------------------------------------------------------------------------- /docs/fr/core/yaml-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/core/yaml-frontmatter.md -------------------------------------------------------------------------------- /docs/fr/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/faq.md -------------------------------------------------------------------------------- /docs/fr/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/get-involved.md -------------------------------------------------------------------------------- /docs/fr/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/get-started.md -------------------------------------------------------------------------------- /docs/fr/guides/guide-ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/guides/guide-ide.md -------------------------------------------------------------------------------- /docs/fr/guides/guide-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/guides/guide-notes.md -------------------------------------------------------------------------------- /docs/fr/guides/guide-zettelkasten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/guides/guide-zettelkasten.md -------------------------------------------------------------------------------- /docs/fr/img/assets_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/assets_manager.png -------------------------------------------------------------------------------- /docs/fr/img/attachment-pane-references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/attachment-pane-references.png -------------------------------------------------------------------------------- /docs/fr/img/attachment_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/attachment_sidebar.png -------------------------------------------------------------------------------- /docs/fr/img/attachment_sidebar_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/attachment_sidebar_images.png -------------------------------------------------------------------------------- /docs/fr/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/back.png -------------------------------------------------------------------------------- /docs/fr/img/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/create.png -------------------------------------------------------------------------------- /docs/fr/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/fr/img/custom_css_maxwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/custom_css_maxwidth.png -------------------------------------------------------------------------------- /docs/fr/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/fr/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/fr/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/fr/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/export.png -------------------------------------------------------------------------------- /docs/fr/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/file_meta.png -------------------------------------------------------------------------------- /docs/fr/img/file_tree_roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/file_tree_roots.png -------------------------------------------------------------------------------- /docs/fr/img/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/first_start.png -------------------------------------------------------------------------------- /docs/fr/img/internal_linking_tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/internal_linking_tip.gif -------------------------------------------------------------------------------- /docs/fr/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/fr/img/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/markdown.png -------------------------------------------------------------------------------- /docs/fr/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/open.png -------------------------------------------------------------------------------- /docs/fr/img/pdf_settings_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/pdf_settings_font.png -------------------------------------------------------------------------------- /docs/fr/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/fr/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/fr/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/fr/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/fr/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/project_directory.png -------------------------------------------------------------------------------- /docs/fr/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/fr/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/fr/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_display.png -------------------------------------------------------------------------------- /docs/fr/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_editor.png -------------------------------------------------------------------------------- /docs/fr/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_export.png -------------------------------------------------------------------------------- /docs/fr/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_general.png -------------------------------------------------------------------------------- /docs/fr/img/settings_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_project.png -------------------------------------------------------------------------------- /docs/fr/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/fr/img/settings_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_theme.png -------------------------------------------------------------------------------- /docs/fr/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/fr/img/snippets_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/snippets_example.png -------------------------------------------------------------------------------- /docs/fr/img/sorting_indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/sorting_indicators.png -------------------------------------------------------------------------------- /docs/fr/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/fr/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/fr/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/tags_settings.png -------------------------------------------------------------------------------- /docs/fr/img/transient_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/transient_tabs.png -------------------------------------------------------------------------------- /docs/fr/img/translations_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/translations_list.png -------------------------------------------------------------------------------- /docs/fr/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/writing_targets.png -------------------------------------------------------------------------------- /docs/fr/img/writing_targets_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/writing_targets_settings.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_developer_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_developer_tools.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_developer_tools_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_developer_tools_css.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_ide.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_notes.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/fr/img/zettlr_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlr_zettelkasten.png -------------------------------------------------------------------------------- /docs/fr/img/zettlt_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/img/zettlt_tex_file.png -------------------------------------------------------------------------------- /docs/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/index.md -------------------------------------------------------------------------------- /docs/fr/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/install.md -------------------------------------------------------------------------------- /docs/fr/installing-latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/installing-latex.md -------------------------------------------------------------------------------- /docs/fr/installing-pandoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/installing-pandoc.md -------------------------------------------------------------------------------- /docs/fr/reference/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/reference/faq.md -------------------------------------------------------------------------------- /docs/fr/reference/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/reference/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/fr/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/fr/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/reference/settings.md -------------------------------------------------------------------------------- /docs/fr/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/fr/reference/spell-checking.md -------------------------------------------------------------------------------- /docs/it/5-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/5-minutes.md -------------------------------------------------------------------------------- /docs/it/academic/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/citations.md -------------------------------------------------------------------------------- /docs/it/academic/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/custom-templates.md -------------------------------------------------------------------------------- /docs/it/academic/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/pomodoro.md -------------------------------------------------------------------------------- /docs/it/academic/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/presentations.md -------------------------------------------------------------------------------- /docs/it/academic/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/projects.md -------------------------------------------------------------------------------- /docs/it/academic/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/readability.md -------------------------------------------------------------------------------- /docs/it/academic/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/academic/zkn-method.md -------------------------------------------------------------------------------- /docs/it/assets/app.css: -------------------------------------------------------------------------------- 1 | ../../../assets/app.css -------------------------------------------------------------------------------- /docs/it/core/attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/attachments.md -------------------------------------------------------------------------------- /docs/it/core/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/custom-css.md -------------------------------------------------------------------------------- /docs/it/core/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/editor.md -------------------------------------------------------------------------------- /docs/it/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/export.md -------------------------------------------------------------------------------- /docs/it/core/file-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/file-list.md -------------------------------------------------------------------------------- /docs/it/core/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/localisation.md -------------------------------------------------------------------------------- /docs/it/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/search.md -------------------------------------------------------------------------------- /docs/it/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/core/tables.md -------------------------------------------------------------------------------- /docs/it/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/faq.md -------------------------------------------------------------------------------- /docs/it/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/get-involved.md -------------------------------------------------------------------------------- /docs/it/guides/guide-ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/guides/guide-ide.md -------------------------------------------------------------------------------- /docs/it/guides/guide-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/guides/guide-notes.md -------------------------------------------------------------------------------- /docs/it/guides/guide-zettelkasten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/guides/guide-zettelkasten.md -------------------------------------------------------------------------------- /docs/it/img/attachment-pane-references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/attachment-pane-references.png -------------------------------------------------------------------------------- /docs/it/img/attachment_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/attachment_sidebar.png -------------------------------------------------------------------------------- /docs/it/img/attachment_sidebar_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/attachment_sidebar_images.png -------------------------------------------------------------------------------- /docs/it/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/back.png -------------------------------------------------------------------------------- /docs/it/img/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/create.png -------------------------------------------------------------------------------- /docs/it/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/it/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/it/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/it/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/it/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/export.png -------------------------------------------------------------------------------- /docs/it/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/file_meta.png -------------------------------------------------------------------------------- /docs/it/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/it/img/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/markdown.png -------------------------------------------------------------------------------- /docs/it/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/open.png -------------------------------------------------------------------------------- /docs/it/img/pdf_settings_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/pdf_settings_font.png -------------------------------------------------------------------------------- /docs/it/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/it/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/it/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/it/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/it/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/project_directory.png -------------------------------------------------------------------------------- /docs/it/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/it/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/it/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_display.png -------------------------------------------------------------------------------- /docs/it/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_editor.png -------------------------------------------------------------------------------- /docs/it/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_export.png -------------------------------------------------------------------------------- /docs/it/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_general.png -------------------------------------------------------------------------------- /docs/it/img/settings_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_project.png -------------------------------------------------------------------------------- /docs/it/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/it/img/settings_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_theme.png -------------------------------------------------------------------------------- /docs/it/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/it/img/sorting_indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/sorting_indicators.png -------------------------------------------------------------------------------- /docs/it/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/it/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/it/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/tags_settings.png -------------------------------------------------------------------------------- /docs/it/img/translations_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/translations_list.png -------------------------------------------------------------------------------- /docs/it/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/writing_targets.png -------------------------------------------------------------------------------- /docs/it/img/writing_targets_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/writing_targets_settings.png -------------------------------------------------------------------------------- /docs/it/img/zettlr_ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/zettlr_ide.png -------------------------------------------------------------------------------- /docs/it/img/zettlr_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/zettlr_notes.png -------------------------------------------------------------------------------- /docs/it/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/it/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/it/img/zettlr_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/zettlr_zettelkasten.png -------------------------------------------------------------------------------- /docs/it/img/zettlt_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/img/zettlt_tex_file.png -------------------------------------------------------------------------------- /docs/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/index.md -------------------------------------------------------------------------------- /docs/it/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/install.md -------------------------------------------------------------------------------- /docs/it/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/it/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/reference/settings.md -------------------------------------------------------------------------------- /docs/it/reference/shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/reference/shortcuts.md -------------------------------------------------------------------------------- /docs/it/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/it/reference/spell-checking.md -------------------------------------------------------------------------------- /docs/ja/academic/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/citations.md -------------------------------------------------------------------------------- /docs/ja/academic/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/custom-templates.md -------------------------------------------------------------------------------- /docs/ja/academic/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/pomodoro.md -------------------------------------------------------------------------------- /docs/ja/academic/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/presentations.md -------------------------------------------------------------------------------- /docs/ja/academic/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/projects.md -------------------------------------------------------------------------------- /docs/ja/academic/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/readability.md -------------------------------------------------------------------------------- /docs/ja/academic/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/academic/zkn-method.md -------------------------------------------------------------------------------- /docs/ja/assets/app.css: -------------------------------------------------------------------------------- 1 | ../../../assets/app.css -------------------------------------------------------------------------------- /docs/ja/concepts/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/concepts/context.md -------------------------------------------------------------------------------- /docs/ja/concepts/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/concepts/workspaces.md -------------------------------------------------------------------------------- /docs/ja/concepts/wysiwym.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/concepts/wysiwym.md -------------------------------------------------------------------------------- /docs/ja/core/assets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/assets-manager.md -------------------------------------------------------------------------------- /docs/ja/core/autocorrect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/autocorrect.md -------------------------------------------------------------------------------- /docs/ja/core/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/custom-css.md -------------------------------------------------------------------------------- /docs/ja/core/defaults-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/defaults-files.md -------------------------------------------------------------------------------- /docs/ja/core/editor-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/editor-modes.md -------------------------------------------------------------------------------- /docs/ja/core/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/editor.md -------------------------------------------------------------------------------- /docs/ja/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/export.md -------------------------------------------------------------------------------- /docs/ja/core/file-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/file-manager.md -------------------------------------------------------------------------------- /docs/ja/core/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/import.md -------------------------------------------------------------------------------- /docs/ja/core/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/localisation.md -------------------------------------------------------------------------------- /docs/ja/core/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/math.md -------------------------------------------------------------------------------- /docs/ja/core/print-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/print-preview.md -------------------------------------------------------------------------------- /docs/ja/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/search.md -------------------------------------------------------------------------------- /docs/ja/core/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/sidebar.md -------------------------------------------------------------------------------- /docs/ja/core/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/snippets.md -------------------------------------------------------------------------------- /docs/ja/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/tables.md -------------------------------------------------------------------------------- /docs/ja/core/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/tabs.md -------------------------------------------------------------------------------- /docs/ja/core/yaml-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/core/yaml-frontmatter.md -------------------------------------------------------------------------------- /docs/ja/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/faq.md -------------------------------------------------------------------------------- /docs/ja/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/get-involved.md -------------------------------------------------------------------------------- /docs/ja/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/get-started.md -------------------------------------------------------------------------------- /docs/ja/img/assets_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/assets_manager.png -------------------------------------------------------------------------------- /docs/ja/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/ja/img/custom_css_maxwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/custom_css_maxwidth.png -------------------------------------------------------------------------------- /docs/ja/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/ja/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/ja/img/directory_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/directory_properties.png -------------------------------------------------------------------------------- /docs/ja/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/ja/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/file_meta.png -------------------------------------------------------------------------------- /docs/ja/img/file_tree_roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/file_tree_roots.png -------------------------------------------------------------------------------- /docs/ja/img/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/first_start.png -------------------------------------------------------------------------------- /docs/ja/img/full_text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/full_text_search.png -------------------------------------------------------------------------------- /docs/ja/img/internal_linking_tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/internal_linking_tip.gif -------------------------------------------------------------------------------- /docs/ja/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/ja/img/pandoc_variable_resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/pandoc_variable_resolution.png -------------------------------------------------------------------------------- /docs/ja/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/ja/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/ja/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/ja/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/ja/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/project_directory.png -------------------------------------------------------------------------------- /docs/ja/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/ja/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/ja/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_display.png -------------------------------------------------------------------------------- /docs/ja/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_editor.png -------------------------------------------------------------------------------- /docs/ja/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_export.png -------------------------------------------------------------------------------- /docs/ja/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_general.png -------------------------------------------------------------------------------- /docs/ja/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/ja/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/ja/img/sidebar_other_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/sidebar_other_files.png -------------------------------------------------------------------------------- /docs/ja/img/sidebar_references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/sidebar_references.png -------------------------------------------------------------------------------- /docs/ja/img/sidebar_related_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/sidebar_related_files.png -------------------------------------------------------------------------------- /docs/ja/img/sidebar_toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/sidebar_toc.png -------------------------------------------------------------------------------- /docs/ja/img/snippets_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/snippets_example.png -------------------------------------------------------------------------------- /docs/ja/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/ja/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/ja/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/tags_settings.png -------------------------------------------------------------------------------- /docs/ja/img/translations_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/translations_list.png -------------------------------------------------------------------------------- /docs/ja/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/writing_targets.png -------------------------------------------------------------------------------- /docs/ja/img/zettlr_add_LaTeX_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/zettlr_add_LaTeX_template.png -------------------------------------------------------------------------------- /docs/ja/img/zettlr_developer_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/zettlr_developer_tools.png -------------------------------------------------------------------------------- /docs/ja/img/zettlr_developer_tools_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/zettlr_developer_tools_css.png -------------------------------------------------------------------------------- /docs/ja/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/ja/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/ja/img/zettlr_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/img/zettlr_tex_file.png -------------------------------------------------------------------------------- /docs/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/index.md -------------------------------------------------------------------------------- /docs/ja/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/install.md -------------------------------------------------------------------------------- /docs/ja/installing-latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/installing-latex.md -------------------------------------------------------------------------------- /docs/ja/portable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/portable.md -------------------------------------------------------------------------------- /docs/ja/reference/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/reference/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/ja/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/ja/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/reference/settings.md -------------------------------------------------------------------------------- /docs/ja/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/reference/spell-checking.md -------------------------------------------------------------------------------- /docs/ja/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ja/troubleshooting.md -------------------------------------------------------------------------------- /docs/ru/advanced/assets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/assets-manager.md -------------------------------------------------------------------------------- /docs/ru/advanced/custom-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/custom-css.md -------------------------------------------------------------------------------- /docs/ru/advanced/custom-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/custom-templates.md -------------------------------------------------------------------------------- /docs/ru/advanced/defaults-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/defaults-files.md -------------------------------------------------------------------------------- /docs/ru/advanced/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/graph.md -------------------------------------------------------------------------------- /docs/ru/advanced/pomodoro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/pomodoro.md -------------------------------------------------------------------------------- /docs/ru/advanced/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/projects.md -------------------------------------------------------------------------------- /docs/ru/advanced/tag-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/tag-manager.md -------------------------------------------------------------------------------- /docs/ru/advanced/yaml-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/yaml-frontmatter.md -------------------------------------------------------------------------------- /docs/ru/advanced/zkn-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/advanced/zkn-method.md -------------------------------------------------------------------------------- /docs/ru/assets/app.css: -------------------------------------------------------------------------------- 1 | ../../../assets/app.css -------------------------------------------------------------------------------- /docs/ru/core/autocorrect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/autocorrect.md -------------------------------------------------------------------------------- /docs/ru/core/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/citations.md -------------------------------------------------------------------------------- /docs/ru/core/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/comments.md -------------------------------------------------------------------------------- /docs/ru/core/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/export.md -------------------------------------------------------------------------------- /docs/ru/core/file-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/file-manager.md -------------------------------------------------------------------------------- /docs/ru/core/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/files.md -------------------------------------------------------------------------------- /docs/ru/core/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/import.md -------------------------------------------------------------------------------- /docs/ru/core/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/math.md -------------------------------------------------------------------------------- /docs/ru/core/print-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/print-preview.md -------------------------------------------------------------------------------- /docs/ru/core/readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/readability.md -------------------------------------------------------------------------------- /docs/ru/core/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/search.md -------------------------------------------------------------------------------- /docs/ru/core/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/sidebar.md -------------------------------------------------------------------------------- /docs/ru/core/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/snippets.md -------------------------------------------------------------------------------- /docs/ru/core/split-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/split-view.md -------------------------------------------------------------------------------- /docs/ru/core/statusbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/statusbar.md -------------------------------------------------------------------------------- /docs/ru/core/style-and-grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/style-and-grammar.md -------------------------------------------------------------------------------- /docs/ru/core/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/tables.md -------------------------------------------------------------------------------- /docs/ru/core/user-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/user-interface.md -------------------------------------------------------------------------------- /docs/ru/core/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/workspaces.md -------------------------------------------------------------------------------- /docs/ru/core/writing-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/writing-markdown.md -------------------------------------------------------------------------------- /docs/ru/core/writing-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/core/writing-statistics.md -------------------------------------------------------------------------------- /docs/ru/getting-started/a-note-on-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/getting-started/a-note-on-security.md -------------------------------------------------------------------------------- /docs/ru/getting-started/get-involved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/getting-started/get-involved.md -------------------------------------------------------------------------------- /docs/ru/getting-started/installing-latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/getting-started/installing-latex.md -------------------------------------------------------------------------------- /docs/ru/getting-started/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/getting-started/migrating.md -------------------------------------------------------------------------------- /docs/ru/getting-started/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/getting-started/setup.md -------------------------------------------------------------------------------- /docs/ru/getting-started/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/getting-started/troubleshooting.md -------------------------------------------------------------------------------- /docs/ru/guides/journal-latex-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/guides/journal-latex-template.md -------------------------------------------------------------------------------- /docs/ru/guides/languagetool-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/guides/languagetool-local.md -------------------------------------------------------------------------------- /docs/ru/guides/portable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/guides/portable.md -------------------------------------------------------------------------------- /docs/ru/guides/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/guides/presentations.md -------------------------------------------------------------------------------- /docs/ru/img/ConverttoComment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/ConverttoComment.gif -------------------------------------------------------------------------------- /docs/ru/img/Emc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/Emc2.png -------------------------------------------------------------------------------- /docs/ru/img/NewComment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/NewComment.gif -------------------------------------------------------------------------------- /docs/ru/img/assets_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/assets_manager.png -------------------------------------------------------------------------------- /docs/ru/img/create_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/create_tex_file.png -------------------------------------------------------------------------------- /docs/ru/img/custom_css_maxwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/custom_css_maxwidth.png -------------------------------------------------------------------------------- /docs/ru/img/custom_css_pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/custom_css_pilcrow.png -------------------------------------------------------------------------------- /docs/ru/img/custom_css_unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/custom_css_unsplash.png -------------------------------------------------------------------------------- /docs/ru/img/custom_css_unsplash_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/custom_css_unsplash_dark.png -------------------------------------------------------------------------------- /docs/ru/img/custom_css_unsplash_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/custom_css_unsplash_light.png -------------------------------------------------------------------------------- /docs/ru/img/directory_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/directory_properties.png -------------------------------------------------------------------------------- /docs/ru/img/export-to-csl-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/export-to-csl-json.png -------------------------------------------------------------------------------- /docs/ru/img/file_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/file_meta.png -------------------------------------------------------------------------------- /docs/ru/img/file_tree_roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/file_tree_roots.png -------------------------------------------------------------------------------- /docs/ru/img/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/first_start.png -------------------------------------------------------------------------------- /docs/ru/img/full_text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/full_text_search.png -------------------------------------------------------------------------------- /docs/ru/img/graph_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/graph_view.png -------------------------------------------------------------------------------- /docs/ru/img/graph_view_single_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/graph_view_single_component.png -------------------------------------------------------------------------------- /docs/ru/img/latex_template_body_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/latex_template_body_var.png -------------------------------------------------------------------------------- /docs/ru/img/latex_template_final_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/latex_template_final_export.png -------------------------------------------------------------------------------- /docs/ru/img/latex_template_first_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/latex_template_first_export.png -------------------------------------------------------------------------------- /docs/ru/img/latex_template_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/latex_template_move.png -------------------------------------------------------------------------------- /docs/ru/img/latex_template_test_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/latex_template_test_export.png -------------------------------------------------------------------------------- /docs/ru/img/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/logo_small.png -------------------------------------------------------------------------------- /docs/ru/img/long_markdown_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/long_markdown_table.png -------------------------------------------------------------------------------- /docs/ru/img/main_window_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/main_window_v3.png -------------------------------------------------------------------------------- /docs/ru/img/math_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/math_example.png -------------------------------------------------------------------------------- /docs/ru/img/pandoc_variable_resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/pandoc_variable_resolution.png -------------------------------------------------------------------------------- /docs/ru/img/pomodoro_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/pomodoro_init.png -------------------------------------------------------------------------------- /docs/ru/img/pomodoro_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/pomodoro_run.png -------------------------------------------------------------------------------- /docs/ru/img/presentations_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/presentations_scripts.png -------------------------------------------------------------------------------- /docs/ru/img/presentations_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/presentations_styles.png -------------------------------------------------------------------------------- /docs/ru/img/project_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/project_directory.png -------------------------------------------------------------------------------- /docs/ru/img/reference-doc-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/reference-doc-line.png -------------------------------------------------------------------------------- /docs/ru/img/settings_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_advanced.png -------------------------------------------------------------------------------- /docs/ru/img/settings_autocorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_autocorrect.png -------------------------------------------------------------------------------- /docs/ru/img/settings_citations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_citations.png -------------------------------------------------------------------------------- /docs/ru/img/settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_display.png -------------------------------------------------------------------------------- /docs/ru/img/settings_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_editor.png -------------------------------------------------------------------------------- /docs/ru/img/settings_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_export.png -------------------------------------------------------------------------------- /docs/ru/img/settings_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_general.png -------------------------------------------------------------------------------- /docs/ru/img/settings_spellchecking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_spellchecking.png -------------------------------------------------------------------------------- /docs/ru/img/settings_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_toolbar.png -------------------------------------------------------------------------------- /docs/ru/img/settings_zettelkasten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/settings_zettelkasten.png -------------------------------------------------------------------------------- /docs/ru/img/sidebar_other_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/sidebar_other_files.png -------------------------------------------------------------------------------- /docs/ru/img/sidebar_references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/sidebar_references.png -------------------------------------------------------------------------------- /docs/ru/img/sidebar_related_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/sidebar_related_files.png -------------------------------------------------------------------------------- /docs/ru/img/sidebar_toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/sidebar_toc.png -------------------------------------------------------------------------------- /docs/ru/img/snippets_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/snippets_example.png -------------------------------------------------------------------------------- /docs/ru/img/stats_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/stats_window.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_diagnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_diagnostics.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_diagnostics_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_diagnostics_panel.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_input_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_input_mode.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_languagetool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_languagetool.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_magic_quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_magic_quotes.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_readability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_readability.png -------------------------------------------------------------------------------- /docs/ru/img/statusbar_word_chars_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/statusbar_word_chars_cursor.png -------------------------------------------------------------------------------- /docs/ru/img/table_active_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/table_active_cell.png -------------------------------------------------------------------------------- /docs/ru/img/table_with_edge_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/table_with_edge_buttons.png -------------------------------------------------------------------------------- /docs/ru/img/tag_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/tag_manager.png -------------------------------------------------------------------------------- /docs/ru/img/tags_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/tags_settings.png -------------------------------------------------------------------------------- /docs/ru/img/word-default-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/word-default-styles.png -------------------------------------------------------------------------------- /docs/ru/img/writing_targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/writing_targets.png -------------------------------------------------------------------------------- /docs/ru/img/zettlr_add_LaTeX_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/zettlr_add_LaTeX_template.png -------------------------------------------------------------------------------- /docs/ru/img/zettlr_developer_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/zettlr_developer_tools.png -------------------------------------------------------------------------------- /docs/ru/img/zettlr_developer_tools_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/zettlr_developer_tools_css.png -------------------------------------------------------------------------------- /docs/ru/img/zettlr_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/zettlr_table.png -------------------------------------------------------------------------------- /docs/ru/img/zettlr_table_movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/zettlr_table_movement.png -------------------------------------------------------------------------------- /docs/ru/img/zettlr_tex_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/img/zettlr_tex_file.png -------------------------------------------------------------------------------- /docs/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/index.md -------------------------------------------------------------------------------- /docs/ru/reference/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/reference/faq.md -------------------------------------------------------------------------------- /docs/ru/reference/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/reference/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/ru/reference/markdown-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/reference/markdown-basics.md -------------------------------------------------------------------------------- /docs/ru/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/reference/settings.md -------------------------------------------------------------------------------- /docs/ru/reference/spell-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/docs/ru/reference/spell-checking.md -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/scripts/serve.sh -------------------------------------------------------------------------------- /theme_override/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettlr/zettlr-docs/HEAD/theme_override/main.html --------------------------------------------------------------------------------