在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Android手机应用开发 → VNote编辑器v3.15.0

VNote编辑器v3.15.0

Android手机应用开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:4.94M
  • 下载次数:7
  • 浏览次数:98
  • 发布时间:2022-12-17
  • 实例类别:Android手机应用开发
  • 发 布 人:professorlearn
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】VNote编辑器v3.15.0

VNote编辑器是一款受Vim启发的笔记应用程序,VNote旨在提供令人愉悦的笔记记录平台以及出色的编辑体验。VNote不是只是一个降价简单的编辑器。通过提供便笺管理,VNote使在Markdown中记笔记变得更加简单。将来,VNote除了Markdown还将支持更多格式。

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── VNote编辑器_vnote-v3.15.0.zip
├── vnote-v3.15.0
│   ├── COPYING.LESSER
│   ├── README.md
│   ├── README_zh_CN.md
│   ├── changes.md
│   ├── libs
│   │   ├── QHotkey
│   │   ├── libs.pro
│   │   └── vtextedit
│   ├── pics
│   │   ├── alipay.png
│   │   ├── main.png
│   │   ├── main2.png
│   │   ├── vnote.png
│   │   └── wechat_pay.png
│   ├── scripts
│   │   └── update_version.py
│   ├── src
│   │   ├── application.cpp
│   │   ├── application.h
│   │   ├── commandlineoptions.cpp
│   │   ├── commandlineoptions.h
│   │   ├── core
│   │   │   ├── buffer
│   │   │   │   ├── buffer.cpp
│   │   │   │   ├── buffer.h
│   │   │   │   ├── buffer.pri
│   │   │   │   ├── bufferprovider.cpp
│   │   │   │   ├── bufferprovider.h
│   │   │   │   ├── filebufferprovider.cpp
│   │   │   │   ├── filebufferprovider.h
│   │   │   │   ├── filetypehelper.cpp
│   │   │   │   ├── filetypehelper.h
│   │   │   │   ├── ibufferfactory.h
│   │   │   │   ├── markdownbuffer.cpp
│   │   │   │   ├── markdownbuffer.h
│   │   │   │   ├── markdownbufferfactory.cpp
│   │   │   │   ├── markdownbufferfactory.h
│   │   │   │   ├── nodebufferprovider.cpp
│   │   │   │   ├── nodebufferprovider.h
│   │   │   │   ├── textbuffer.cpp
│   │   │   │   ├── textbuffer.h
│   │   │   │   ├── textbufferfactory.cpp
│   │   │   │   └── textbufferfactory.h
│   │   │   ├── buffermgr.cpp
│   │   │   ├── buffermgr.h
│   │   │   ├── clipboarddata.cpp
│   │   │   ├── clipboarddata.h
│   │   │   ├── configmgr.cpp
│   │   │   ├── configmgr.h
│   │   │   ├── core.pri
│   │   │   ├── coreconfig.cpp
│   │   │   ├── coreconfig.h
│   │   │   ├── editorconfig.cpp
│   │   │   ├── editorconfig.h
│   │   │   ├── events.h
│   │   │   ├── exception.h
│   │   │   ├── externalfile.cpp
│   │   │   ├── externalfile.h
│   │   │   ├── file.cpp
│   │   │   ├── file.h
│   │   │   ├── filelocator.h
│   │   │   ├── fileopenparameters.h
│   │   │   ├── global.cpp
│   │   │   ├── global.h
│   │   │   ├── historyitem.cpp
│   │   │   ├── historyitem.h
│   │   │   ├── historymgr.cpp
│   │   │   ├── historymgr.h
│   │   │   ├── htmltemplatehelper.cpp
│   │   │   ├── htmltemplatehelper.h
│   │   │   ├── iconfig.h
│   │   │   ├── location.h
│   │   │   ├── logger.cpp
│   │   │   ├── logger.h
│   │   │   ├── mainconfig.cpp
│   │   │   ├── mainconfig.h
│   │   │   ├── markdowneditorconfig.cpp
│   │   │   ├── markdowneditorconfig.h
│   │   │   ├── namebasedserver.h
│   │   │   ├── noncopyable.h
│   │   │   ├── notebook
│   │   │   │   ├── bundlenotebook.cpp
│   │   │   │   ├── bundlenotebook.h
│   │   │   │   ├── bundlenotebookfactory.cpp
│   │   │   │   ├── bundlenotebookfactory.h
│   │   │   │   ├── externalnode.cpp
│   │   │   │   ├── externalnode.h
│   │   │   │   ├── historyi.h
│   │   │   │   ├── inotebookfactory.h
│   │   │   │   ├── node.cpp
│   │   │   │   ├── node.h
│   │   │   │   ├── nodeparameters.cpp
│   │   │   │   ├── nodeparameters.h
│   │   │   │   ├── notebook.cpp
│   │   │   │   ├── notebook.h
│   │   │   │   ├── notebook.pri
│   │   │   │   ├── notebookdatabaseaccess.cpp
│   │   │   │   ├── notebookdatabaseaccess.h
│   │   │   │   ├── notebookparameters.cpp
│   │   │   │   ├── notebookparameters.h
│   │   │   │   ├── notebooktagmgr.cpp
│   │   │   │   ├── notebooktagmgr.h
│   │   │   │   ├── tag.cpp
│   │   │   │   ├── tag.h
│   │   │   │   ├── tagi.h
│   │   │   │   ├── vxnode.cpp
│   │   │   │   ├── vxnode.h
│   │   │   │   ├── vxnodefile.cpp
│   │   │   │   └── vxnodefile.h
│   │   │   ├── notebookbackend
│   │   │   │   ├── inotebookbackend.cpp
│   │   │   │   ├── inotebookbackend.h
│   │   │   │   ├── inotebookbackendfactory.h
│   │   │   │   ├── localnotebookbackend.cpp
│   │   │   │   ├── localnotebookbackend.h
│   │   │   │   ├── localnotebookbackendfactory.cpp
│   │   │   │   ├── localnotebookbackendfactory.h
│   │   │   │   └── notebookbackend.pri
│   │   │   ├── notebookconfigmgr
│   │   │   │   ├── bundlenotebookconfigmgr.cpp
│   │   │   │   ├── bundlenotebookconfigmgr.h
│   │   │   │   ├── inotebookconfigmgr.cpp
│   │   │   │   ├── inotebookconfigmgr.h
│   │   │   │   ├── inotebookconfigmgrfactory.h
│   │   │   │   ├── notebookconfig.cpp
│   │   │   │   ├── notebookconfig.h
│   │   │   │   ├── notebookconfigmgr.pri
│   │   │   │   ├── vxnodeconfig.cpp
│   │   │   │   ├── vxnodeconfig.h
│   │   │   │   ├── vxnotebookconfigmgr.cpp
│   │   │   │   ├── vxnotebookconfigmgr.h
│   │   │   │   ├── vxnotebookconfigmgrfactory.cpp
│   │   │   │   └── vxnotebookconfigmgrfactory.h
│   │   │   ├── notebookmgr.cpp
│   │   │   ├── notebookmgr.h
│   │   │   ├── quickaccesshelper.cpp
│   │   │   ├── quickaccesshelper.h
│   │   │   ├── sessionconfig.cpp
│   │   │   ├── sessionconfig.h
│   │   │   ├── singleinstanceguard.cpp
│   │   │   ├── singleinstanceguard.h
│   │   │   ├── templatemgr.cpp
│   │   │   ├── templatemgr.h
│   │   │   ├── texteditorconfig.cpp
│   │   │   ├── texteditorconfig.h
│   │   │   ├── theme.cpp
│   │   │   ├── theme.h
│   │   │   ├── thememgr.cpp
│   │   │   ├── thememgr.h
│   │   │   ├── versioncontroller
│   │   │   │   ├── dummyversioncontroller.cpp
│   │   │   │   ├── dummyversioncontroller.h
│   │   │   │   ├── dummyversioncontrollerfactory.cpp
│   │   │   │   ├── dummyversioncontrollerfactory.h
│   │   │   │   ├── iversioncontroller.h
│   │   │   │   ├── iversioncontrollerfactory.h
│   │   │   │   ├── versioncontroller.pri
│   │   │   │   ├── versioncontrollerserver.cpp
│   │   │   │   └── versioncontrollerserver.h
│   │   │   ├── vnotex.cpp
│   │   │   ├── vnotex.h
│   │   │   ├── webresource.h
│   │   │   ├── widgetconfig.cpp
│   │   │   └── widgetconfig.h
│   │   ├── data
│   │   │   ├── core
│   │   │   │   ├── Info.plist
│   │   │   │   ├── core.qrc
│   │   │   │   ├── icons
│   │   │   │   │   ├── add.svg
│   │   │   │   │   ├── advanced_settings.svg
│   │   │   │   │   ├── attachment_editor.svg
│   │   │   │   │   ├── attachment_full_editor.svg
│   │   │   │   │   ├── buffer.svg
│   │   │   │   │   ├── busy.svg
│   │   │   │   │   ├── cancel.svg
│   │   │   │   │   ├── clear.svg
│   │   │   │   │   ├── close.svg
│   │   │   │   │   ├── console_dock.svg
│   │   │   │   │   ├── debug_editor.svg
│   │   │   │   │   ├── decrease_outline_level.svg
│   │   │   │   │   ├── delete.svg
│   │   │   │   │   ├── discard_editor.svg
│   │   │   │   │   ├── edit_editor.svg
│   │   │   │   │   ├── expand.svg
│   │   │   │   │   ├── export_menu.svg
│   │   │   │   │   ├── file_node.svg
│   │   │   │   │   ├── find_replace_editor.svg
│   │   │   │   │   ├── flash_page_menu.svg
│   │   │   │   │   ├── folder_node.svg
│   │   │   │   │   ├── fullscreen.svg
│   │   │   │   │   ├── history_dock.svg
│   │   │   │   │   ├── image_host_editor.svg
│   │   │   │   │   ├── import_menu.svg
│   │   │   │   │   ├── increase_outline_level.svg
│   │   │   │   │   ├── inplace_preview_editor.svg
│   │   │   │   │   ├── location_list_dock.svg
│   │   │   │   │   ├── manage_notebooks.svg
│   │   │   │   │   ├── maximize.svg
│   │   │   │   │   ├── maximize_restore.svg
│   │   │   │   │   ├── menu.svg
│   │   │   │   │   ├── minimize.svg
│   │   │   │   │   ├── navigation_dock.svg
│   │   │   │   │   ├── new_file.svg
│   │   │   │   │   ├── new_folder.svg
│   │   │   │   │   ├── new_note.svg
│   │   │   │   │   ├── notebook_default.svg
│   │   │   │   │   ├── notebook_menu.svg
│   │   │   │   │   ├── open_folder.svg
│   │   │   │   │   ├── other_item.svg
│   │   │   │   │   ├── outline_dock.svg
│   │   │   │   │   ├── outline_editor.svg
│   │   │   │   │   ├── print_editor.svg
│   │   │   │   │   ├── properties.svg
│   │   │   │   │   ├── quick_access_menu.svg
│   │   │   │   │   ├── read_editor.svg
│   │   │   │   │   ├── recycle_bin.svg
│   │   │   │   │   ├── save_editor.svg
│   │   │   │   │   ├── scan_import.svg
│   │   │   │   │   ├── search.svg
│   │   │   │   │   ├── search_dock.svg
│   │   │   │   │   ├── search_location_list.svg
│   │   │   │   │   ├── section_number_editor.svg
│   │   │   │   │   ├── settings.svg
│   │   │   │   │   ├── snippet_dock.svg
│   │   │   │   │   ├── sort.svg
│   │   │   │   │   ├── split_menu.svg
│   │   │   │   │   ├── split_window_list.svg
│   │   │   │   │   ├── stay_on_top.svg
│   │   │   │   │   ├── tag.svg
│   │   │   │   │   ├── tag_dock.svg
│   │   │   │   │   ├── tag_editor.svg
│   │   │   │   │   ├── tag_selected.svg
│   │   │   │   │   ├── task_menu.svg
│   │   │   │   │   ├── type_bold_editor.svg
│   │   │   │   │   ├── type_checked_todo_list_editor.svg
│   │   │   │   │   ├── type_code_block_editor.svg
│   │   │   │   │   ├── type_code_editor.svg
│   │   │   │   │   ├── type_heading_editor.svg
│   │   │   │   │   ├── type_image_editor.svg
│   │   │   │   │   ├── type_italic_editor.svg
│   │   │   │   │   ├── type_link_editor.svg
│   │   │   │   │   ├── type_mark_editor.svg
│   │   │   │   │   ├── type_math_block_editor.svg
│   │   │   │   │   ├── type_math_editor.svg
│   │   │   │   │   ├── type_ordered_list_editor.svg
│   │   │   │   │   ├── type_quote_editor.svg
│   │   │   │   │   ├── type_strikethrough_editor.svg
│   │   │   │   │   ├── type_table_editor.svg
│   │   │   │   │   ├── type_todo_list_editor.svg
│   │   │   │   │   ├── type_unordered_list_editor.svg
│   │   │   │   │   ├── united_entry.svg
│   │   │   │   │   ├── up_level.svg
│   │   │   │   │   ├── view.svg
│   │   │   │   │   ├── view_mode_editor.svg
│   │   │   │   │   ├── vnote.icns
│   │   │   │   │   ├── vnote.ico
│   │   │   │   │   ├── windows_dock.svg
│   │   │   │   │   └── word_count_editor.svg
│   │   │   │   ├── logo
│   │   │   │   │   ├── 128x128
│   │   │   │   │   │   └── vnote.png
│   │   │   │   │   ├── 16x16
│   │   │   │   │   │   └── vnote.png
│   │   │   │   │   ├── 256x256
│   │   │   │   │   │   └── vnote.png
│   │   │   │   │   ├── 32x32
│   │   │   │   │   │   └── vnote.png
│   │   │   │   │   ├── 48x48
│   │   │   │   │   │   └── vnote.png
│   │   │   │   │   ├── 64x64
│   │   │   │   │   │   └── vnote.png
│   │   │   │   │   ├── vnote.png
│   │   │   │   │   ├── vnote.svg
│   │   │   │   │   └── vnote_mono.png
│   │   │   │   ├── translations
│   │   │   │   │   ├── qdialogbuttonbox_zh_CN.qm
│   │   │   │   │   ├── qdialogbuttonbox_zh_CN.ts
│   │   │   │   │   ├── qt_ja.qm
│   │   │   │   │   ├── qt_zh_CN.qm
│   │   │   │   │   ├── qt_zh_CN.ts
│   │   │   │   │   ├── qtbase_ja.qm
│   │   │   │   │   ├── qtbase_zh_CN.qm
│   │   │   │   │   ├── qtbase_zh_CN.ts
│   │   │   │   │   ├── qwebengine_zh_CN.qm
│   │   │   │   │   ├── qwebengine_zh_CN.ts
│   │   │   │   │   ├── vnote_ja.qm
│   │   │   │   │   ├── vnote_ja.ts
│   │   │   │   │   ├── vnote_zh_CN.qm
│   │   │   │   │   ├── vnote_zh_CN.ts
│   │   │   │   │   ├── vtextedit_ja.qm
│   │   │   │   │   └── vtextedit_zh_CN.qm
│   │   │   │   ├── vnote.desktop
│   │   │   │   └── vnotex.json
│   │   │   └── extra
│   │   │       ├── dicts
│   │   │       │   ├── en_US.aff
│   │   │       │   └── en_US.dic
│   │   │       ├── docs
│   │   │       │   ├── en
│   │   │       │   │   ├── about_vnotex.txt
│   │   │       │   │   ├── external_programs.md
│   │   │       │   │   ├── features_tips.txt
│   │   │       │   │   ├── get_started.txt
│   │   │       │   │   ├── markdown_guide.md
│   │   │       │   │   ├── shortcuts.md
│   │   │       │   │   └── welcome.md
│   │   │       │   └── zh_CN
│   │   │       │       ├── about_vnotex.txt
│   │   │       │       ├── external_programs.md
│   │   │       │       ├── features_tips.txt
│   │   │       │       ├── get_started.txt
│   │   │       │       ├── markdown_guide.md
│   │   │       │       ├── shortcuts.md
│   │   │       │       └── welcome.md
│   │   │       ├── extra.qrc
│   │   │       ├── syntax-highlighting
│   │   │       │   ├── syntax
│   │   │       │   │   ├── 4dos.xml
│   │   │       │   │   ├── abap.xml
│   │   │       │   │   ├── abc.xml
│   │   │       │   │   ├── actionscript.xml
│   │   │       │   │   ├── ada.xml
│   │   │       │   │   ├── adblock.xml
│   │   │       │   │   ├── agda.xml
│   │   │       │   │   ├── ahdl.xml
│   │   │       │   │   ├── ahk.xml
│   │   │       │   │   ├── alert.xml
│   │   │       │   │   ├── ample.xml
│   │   │       │   │   ├── ansforth94.xml
│   │   │       │   │   ├── ansic89.xml
│   │   │       │   │   ├── ansys.xml
│   │   │       │   │   ├── apache.xml
│   │   │       │   │   ├── apparmor.xml
│   │   │       │   │   ├── asciidoc.xml
│   │   │       │   │   ├── asm-avr.xml
│   │   │       │   │   ├── asm-dsp56k.xml
│   │   │       │   │   ├── asm-m68k.xml
│   │   │       │   │   ├── asm6502.xml
│   │   │       │   │   ├── asn1.xml
│   │   │       │   │   ├── asp.xml
│   │   │       │   │   ├── awk.xml
│   │   │       │   │   ├── bash.xml
│   │   │       │   │   ├── bibtex.xml
│   │   │       │   │   ├── bitbake.xml
│   │   │       │   │   ├── bmethod.xml
│   │   │       │   │   ├── boo.xml
│   │   │       │   │   ├── brightscript.xml
│   │   │       │   │   ├── c.xml
│   │   │       │   │   ├── carto-css.xml
│   │   │       │   │   ├── ccss.xml
│   │   │       │   │   ├── cg.xml
│   │   │       │   │   ├── cgis.xml
│   │   │       │   │   ├── changelog.xml
│   │   │       │   │   ├── chicken.xml
│   │   │       │   │   ├── cil.xml
│   │   │       │   │   ├── cisco.xml
│   │   │       │   │   ├── clipper.xml
│   │   │       │   │   ├── clist.xml
│   │   │       │   │   ├── clojure.xml
│   │   │       │   │   ├── cmake.xml
│   │   │       │   │   ├── coffee.xml
│   │   │       │   │   ├── coldfusion.xml
│   │   │       │   │   ├── commonlisp.xml
│   │   │       │   │   ├── component-pascal.xml
│   │   │       │   │   ├── context.xml
│   │   │       │   │   ├── cpp.xml
│   │   │       │   │   ├── crk.xml
│   │   │       │   │   ├── cs.xml
│   │   │       │   │   ├── css.xml
│   │   │       │   │   ├── cubescript.xml
│   │   │       │   │   ├── cue.xml
│   │   │       │   │   ├── curry.xml
│   │   │       │   │   ├── d.xml
│   │   │       │   │   ├── debianchangelog.xml
│   │   │       │   │   ├── debiancontrol.xml
│   │   │       │   │   ├── desktop.xml
│   │   │       │   │   ├── diff.xml
│   │   │       │   │   ├── djangotemplate.xml
│   │   │       │   │   ├── dockerfile.xml
│   │   │       │   │   ├── dosbat.xml
│   │   │       │   │   ├── dot.xml
│   │   │       │   │   ├── doxyfile.xml
│   │   │       │   │   ├── doxygen.xml
│   │   │       │   │   ├── doxygenlua.xml
│   │   │       │   │   ├── dtd.xml
│   │   │       │   │   ├── e.xml
│   │   │       │   │   ├── eiffel.xml
│   │   │       │   │   ├── elixir.xml
│   │   │       │   │   ├── elm.xml
│   │   │       │   │   ├── email.xml
│   │   │       │   │   ├── erlang.xml
│   │   │       │   │   ├── euphoria.xml
│   │   │       │   │   ├── fasm.xml
│   │   │       │   │   ├── fastq.xml
│   │   │       │   │   ├── ferite.xml
│   │   │       │   │   ├── fgl-4gl.xml
│   │   │       │   │   ├── fgl-per.xml
│   │   │       │   │   ├── fish.xml
│   │   │       │   │   ├── flatbuffers.xml
│   │   │       │   │   ├── fortran-fixed.xml
│   │   │       │   │   ├── fortran-free.xml
│   │   │       │   │   ├── freebasic.xml
│   │   │       │   │   ├── fsharp.xml
│   │   │       │   │   ├── fstab.xml
│   │   │       │   │   ├── ftl.xml
│   │   │       │   │   ├── gap.xml
│   │   │       │   │   ├── gcc.xml
│   │   │       │   │   ├── gcode.xml
│   │   │       │   │   ├── gdb-bt.xml
│   │   │       │   │   ├── gdb.xml
│   │   │       │   │   ├── gdbinit.xml
│   │   │       │   │   ├── gdl.xml
│   │   │       │   │   ├── gettext.xml
│   │   │       │   │   ├── git-ignore.xml
│   │   │       │   │   ├── git-rebase.xml
│   │   │       │   │   ├── gitolite.xml
│   │   │       │   │   ├── glosstex.xml
│   │   │       │   │   ├── glsl.xml
│   │   │       │   │   ├── gnuassembler.xml
│   │   │       │   │   ├── gnuplot.xml
│   │   │       │   │   ├── go.xml
│   │   │       │   │   ├── grammar.xml
│   │   │       │   │   ├── groovy.xml
│   │   │       │   │   ├── haml.xml
│   │   │       │   │   ├── hamlet.xml
│   │   │       │   │   ├── haskell.xml
│   │   │       │   │   ├── haxe.xml
│   │   │       │   │   ├── html.xml
│   │   │       │   │   ├── hunspell-aff.xml
│   │   │       │   │   ├── hunspell-dat.xml
│   │   │       │   │   ├── hunspell-dic.xml
│   │   │       │   │   ├── hunspell-idx.xml
│   │   │       │   │   ├── idconsole.xml
│   │   │       │   │   ├── idl.xml
│   │   │       │   │   ├── ilerpg.xml
│   │   │       │   │   ├── inform.xml
│   │   │       │   │   ├── ini.xml
│   │   │       │   │   ├── intelhex.xml
│   │   │       │   │   ├── isocpp.xml
│   │   │       │   │   ├── j.xml
│   │   │       │   │   ├── jam.xml
│   │   │       │   │   ├── java.xml
│   │   │       │   │   ├── javadoc.xml
│   │   │       │   │   ├── javascript-react.xml
│   │   │       │   │   ├── javascript.xml
│   │   │       │   │   ├── jcl.xml
│   │   │       │   │   ├── jira.xml
│   │   │       │   │   ├── json.xml
│   │   │       │   │   ├── jsp.xml
│   │   │       │   │   ├── julia.xml
│   │   │       │   │   ├── k.xml
│   │   │       │   │   ├── kbasic.xml
│   │   │       │   │   ├── kconfig.xml
│   │   │       │   │   ├── kdesrc-buildrc.xml
│   │   │       │   │   ├── kotlin.xml
│   │   │       │   │   ├── latex.xml
│   │   │       │   │   ├── ld.xml
│   │   │       │   │   ├── ldif.xml
│   │   │       │   │   ├── less.xml
│   │   │       │   │   ├── lex.xml
│   │   │       │   │   ├── lilypond.xml
│   │   │       │   │   ├── literate-curry.xml
│   │   │       │   │   ├── literate-haskell.xml
│   │   │       │   │   ├── logcat.xml
│   │   │       │   │   ├── logtalk.xml
│   │   │       │   │   ├── lpc.xml
│   │   │       │   │   ├── lsl.xml
│   │   │       │   │   ├── lua.xml
│   │   │       │   │   ├── m3u.xml
│   │   │       │   │   ├── m4.xml
│   │   │       │   │   ├── mab.xml
│   │   │       │   │   ├── magma.xml
│   │   │       │   │   ├── makefile.xml
│   │   │       │   │   ├── mako.xml
│   │   │       │   │   ├── mandoc.xml
│   │   │       │   │   ├── markdown.xml
│   │   │       │   │   ├── mason.xml
│   │   │       │   │   ├── mathematica.xml
│   │   │       │   │   ├── matlab.xml
│   │   │       │   │   ├── maxima.xml
│   │   │       │   │   ├── mediawiki.xml
│   │   │       │   │   ├── mel.xml
│   │   │       │   │   ├── mergetagtext.xml
│   │   │       │   │   ├── meson.xml
│   │   │       │   │   ├── metafont.xml
│   │   │       │   │   ├── metamath.xml
│   │   │       │   │   ├── mib.xml
│   │   │       │   │   ├── mips.xml
│   │   │       │   │   ├── modelica.xml
│   │   │       │   │   ├── modelines.xml
│   │   │       │   │   ├── modula-2-iso-only.xml
│   │   │       │   │   ├── modula-2-pim-only.xml
│   │   │       │   │   ├── modula-2-r10-only.xml
│   │   │       │   │   ├── modula-2.xml
│   │   │       │   │   ├── monobasic.xml
│   │   │       │   │   ├── mup.xml
│   │   │       │   │   ├── mustache.xml
│   │   │       │   │   ├── nagios.xml
│   │   │       │   │   ├── nasm.xml
│   │   │       │   │   ├── nemerle.xml
│   │   │       │   │   ├── nesc.xml
│   │   │       │   │   ├── ninja.xml
│   │   │       │   │   ├── noweb.xml
│   │   │       │   │   ├── nsis.xml
│   │   │       │   │   ├── objectivec.xml
│   │   │       │   │   ├── objectivecpp.xml
│   │   │       │   │   ├── ocaml.xml
│   │   │       │   │   ├── ocamllex.xml
│   │   │       │   │   ├── ocamlyacc.xml
│   │   │       │   │   ├── octave.xml
│   │   │       │   │   ├── oors.xml
│   │   │       │   │   ├── opal.xml
│   │   │       │   │   ├── opencl.xml
│   │   │       │   │   ├── openscad.xml
│   │   │       │   │   ├── pango.xml
│   │   │       │   │   ├── pascal.xml
│   │   │       │   │   ├── perl.xml
│   │   │       │   │   ├── pgn.xml
│   │   │       │   │   ├── php.xml
│   │   │       │   │   ├── picsrc.xml
│   │   │       │   │   ├── pig.xml
│   │   │       │   │   ├── pike.xml
│   │   │       │   │   ├── pli.xml
│   │   │       │   │   ├── ply.xml
│   │   │       │   │   ├── pony.xml
│   │   │       │   │   ├── postscript.xml
│   │   │       │   │   ├── povray.xml
│   │   │       │   │   ├── powershell.xml
│   │   │       │   │   ├── ppd.xml
│   │   │       │   │   ├── praat.xml
│   │   │       │   │   ├── progress.xml
│   │   │       │   │   ├── prolog.xml
│   │   │       │   │   ├── protobuf.xml
│   │   │       │   │   ├── pug.xml
│   │   │       │   │   ├── puppet.xml
│   │   │       │   │   ├── purebasic.xml
│   │   │       │   │   ├── python.xml
│   │   │       │   │   ├── q.xml
│   │   │       │   │   ├── qdocconf.xml
│   │   │       │   │   ├── qmake.xml
│   │   │       │   │   ├── qml.xml
│   │   │       │   │   ├── r.xml
│   │   │       │   │   ├── rapidq.xml
│   │   │       │   │   ├── rdoc.xml
│   │   │       │   │   ├── relaxng.xml
│   │   │       │   │   ├── relaxngcompact.xml
│   │   │       │   │   ├── replicode.xml
│   │   │       │   │   ├── rest.xml
│   │   │       │   │   ├── rexx.xml
│   │   │       │   │   ├── rhtml.xml
│   │   │       │   │   ├── rib.xml
│   │   │       │   │   ├── rmarkdown.xml
│   │   │       │   │   ├── roff.xml
│   │   │       │   │   ├── rpmspec.xml
│   │   │       │   │   ├── rsiidl.xml
│   │   │       │   │   ├── rtf.xml
│   │   │       │   │   ├── ruby.xml
│   │   │       │   │   ├── rust.xml
│   │   │       │   │   ├── sass.xml
│   │   │       │   │   ├── sather.xml
│   │   │       │   │   ├── scala.xml
│   │   │       │   │   ├── scheme.xml
│   │   │       │   │   ├── sci.xml
│   │   │       │   │   ├── scss.xml
│   │   │       │   │   ├── sed.xml
│   │   │       │   │   ├── selinux-cil.xml
│   │   │       │   │   ├── selinux-fc.xml
│   │   │       │   │   ├── selinux.xml
│   │   │       │   │   ├── sgml.xml
│   │   │       │   │   ├── sieve.xml
│   │   │       │   │   ├── sisu.xml
│   │   │       │   │   ├── smali.xml
│   │   │       │   │   ├── sml.xml
│   │   │       │   │   ├── spice.xml
│   │   │       │   │   ├── sql-mysql.xml
│   │   │       │   │   ├── sql-oracle.xml
│   │   │       │   │   ├── sql-postgresql.xml
│   │   │       │   │   ├── sql.xml
│   │   │       │   │   ├── stan.xml
│   │   │       │   │   ├── stata.xml
│   │   │       │   │   ├── stl.xml
│   │   │       │   │   ├── systemc.xml
│   │   │       │   │   ├── systemverilog.xml
│   │   │       │   │   ├── tads3.xml
│   │   │       │   │   ├── taskjuggler.xml
│   │   │       │   │   ├── tcl.xml
│   │   │       │   │   ├── tcsh.xml
│   │   │       │   │   ├── template-toolkit.xml
│   │   │       │   │   ├── texinfo.xml
│   │   │       │   │   ├── textile.xml
│   │   │       │   │   ├── tibasic.xml
│   │   │       │   │   ├── tiger.xml
│   │   │       │   │   ├── toml.xml
│   │   │       │   │   ├── txt2tags.xml
│   │   │       │   │   ├── typescript-react.xml
│   │   │       │   │   ├── typescript.xml
│   │   │       │   │   ├── uscript.xml
│   │   │       │   │   ├── vala.xml
│   │   │       │   │   ├── valgrind-suppression.xml
│   │   │       │   │   ├── varnish.xml
│   │   │       │   │   ├── varnish4.xml
│   │   │       │   │   ├── varnishcc.xml
│   │   │       │   │   ├── varnishcc4.xml
│   │   │       │   │   ├── varnishtest.xml
│   │   │       │   │   ├── varnishtest4.xml
│   │   │       │   │   ├── vcard.xml
│   │   │       │   │   ├── velocity.xml
│   │   │       │   │   ├── vera.xml
│   │   │       │   │   ├── verilog.xml
│   │   │       │   │   ├── vhdl.xml
│   │   │       │   │   ├── vrml.xml
│   │   │       │   │   ├── wavefront-obj.xml
│   │   │       │   │   ├── wayland-trace.xml
│   │   │       │   │   ├── winehq.xml
│   │   │       │   │   ├── wml.xml
│   │   │       │   │   ├── xharbour.xml
│   │   │       │   │   ├── xml.xml
│   │   │       │   │   ├── xmldebug.xml
│   │   │       │   │   ├── xonotic-console.xml
│   │   │       │   │   ├── xorg.xml
│   │   │       │   │   ├── xslt.xml
│   │   │       │   │   ├── xul.xml
│   │   │       │   │   ├── yacas.xml
│   │   │       │   │   ├── yacc.xml
│   │   │       │   │   ├── yaml.xml
│   │   │       │   │   ├── yang.xml
│   │   │       │   │   ├── zonnon.xml
│   │   │       │   │   └── zsh.xml
│   │   │       │   └── themes
│   │   │       │       ├── breeze-dark.theme
│   │   │       │       ├── default.theme
│   │   │       │       ├── markdown-breeze-dark.theme
│   │   │       │       ├── markdown-default.theme
│   │   │       │       ├── printing.theme
│   │   │       │       ├── solarized-dark.theme
│   │   │       │       ├── solarized-light.theme
│   │   │       │       └── vscode-dark.theme
│   │   │       ├── tasks
│   │   │       │   └── git
│   │   │       │       ├── commit.svg
│   │   │       │       ├── git.json
│   │   │       │       ├── git.svg
│   │   │       │       ├── history.svg
│   │   │       │       ├── initialization.svg
│   │   │       │       ├── pull.svg
│   │   │       │       ├── push.svg
│   │   │       │       └── status.svg
│   │   │       ├── themes
│   │   │       │   ├── moonlight
│   │   │       │   │   ├── arrow_dropdown.svg
│   │   │       │   │   ├── arrow_dropdown_disabled.svg
│   │   │       │   │   ├── branch_closed.svg
│   │   │       │   │   ├── branch_open.svg
│   │   │       │   │   ├── checkbox_checked.svg
│   │   │       │   │   ├── checkbox_checked_disabled.svg
│   │   │       │   │   ├── checkbox_unchecked.svg
│   │   │       │   │   ├── checkbox_unchecked_disabled.svg
│   │   │       │   │   ├── close.svg
│   │   │       │   │   ├── close_grey.svg
│   │   │       │   │   ├── cover.png
│   │   │       │   │   ├── down.svg
│   │   │       │   │   ├── down_disabled.svg
│   │   │       │   │   ├── float.svg
│   │   │       │   │   ├── highlight.css
│   │   │       │   │   ├── interface.qss
│   │   │       │   │   ├── left.svg
│   │   │       │   │   ├── left_disabled.svg
│   │   │       │   │   ├── menu_checkbox.svg
│   │   │       │   │   ├── menu_radiobutton.svg
│   │   │       │   │   ├── palette.json
│   │   │       │   │   ├── radiobutton_checked.svg
│   │   │       │   │   ├── radiobutton_checked_disabled.svg
│   │   │       │   │   ├── radiobutton_unchecked.svg
│   │   │       │   │   ├── radiobutton_unchecked_disabled.svg
│   │   │       │   │   ├── right.svg
│   │   │       │   │   ├── right_disabled.svg
│   │   │       │   │   ├── sizegrip.svg
│   │   │       │   │   ├── text-editor.theme
│   │   │       │   │   ├── up.svg
│   │   │       │   │   ├── up_disabled.svg
│   │   │       │   │   └── web.css
│   │   │       │   ├── native
│   │   │       │   │   ├── cover.png
│   │   │       │   │   ├── highlight.css
│   │   │       │   │   ├── interface.qss
│   │   │       │   │   ├── palette.json
│   │   │       │   │   ├── text-editor.theme
│   │   │       │   │   └── web.css
│   │   │       │   ├── pure
│   │   │       │   │   ├── arrow_dropdown.svg
│   │   │       │   │   ├── arrow_dropdown_disabled.svg
│   │   │       │   │   ├── branch_closed.svg
│   │   │       │   │   ├── branch_open.svg
│   │   │       │   │   ├── checkbox_checked.svg
│   │   │       │   │   ├── checkbox_checked_disabled.svg
│   │   │       │   │   ├── checkbox_unchecked.svg
│   │   │       │   │   ├── checkbox_unchecked_disabled.svg
│   │   │       │   │   ├── close.svg
│   │   │       │   │   ├── close_grey.svg
│   │   │       │   │   ├── cover.png
│   │   │       │   │   ├── down.svg
│   │   │       │   │   ├── down_disabled.svg
│   │   │       │   │   ├── float.svg
│   │   │       │   │   ├── highlight.css
│   │   │       │   │   ├── interface.qss
│   │   │       │   │   ├── left.svg
│   │   │       │   │   ├── left_disabled.svg
│   │   │       │   │   ├── menu_checkbox.svg
│   │   │       │   │   ├── menu_radiobutton.svg
│   │   │       │   │   ├── palette.json
│   │   │       │   │   ├── radiobutton_checked.svg
│   │   │       │   │   ├── radiobutton_checked_disabled.svg
│   │   │       │   │   ├── radiobutton_unchecked.svg
│   │   │       │   │   ├── radiobutton_unchecked_disabled.svg
│   │   │       │   │   ├── right.svg
│   │   │       │   │   ├── right_disabled.svg
│   │   │       │   │   ├── sizegrip.svg
│   │   │       │   │   ├── text-editor.theme
│   │   │       │   │   ├── up.svg
│   │   │       │   │   ├── up_disabled.svg
│   │   │       │   │   └── web.css
│   │   │       │   ├── solarized-dark
│   │   │       │   │   ├── arrow_dropdown.svg
│   │   │       │   │   ├── arrow_dropdown_disabled.svg
│   │   │       │   │   ├── branch_closed.svg
│   │   │       │   │   ├── branch_open.svg
│   │   │       │   │   ├── checkbox_checked.svg
│   │   │       │   │   ├── checkbox_checked_disabled.svg
│   │   │       │   │   ├── checkbox_unchecked.svg
│   │   │       │   │   ├── checkbox_unchecked_disabled.svg
│   │   │       │   │   ├── close.svg
│   │   │       │   │   ├── close_grey.svg
│   │   │       │   │   ├── cover.png
│   │   │       │   │   ├── down.svg
│   │   │       │   │   ├── down_disabled.svg
│   │   │       │   │   ├── float.svg
│   │   │       │   │   ├── highlight.css
│   │   │       │   │   ├── interface.qss
│   │   │       │   │   ├── left.svg
│   │   │       │   │   ├── left_disabled.svg
│   │   │       │   │   ├── menu_checkbox.svg
│   │   │       │   │   ├── menu_radiobutton.svg
│   │   │       │   │   ├── palette.json
│   │   │       │   │   ├── radiobutton_checked.svg
│   │   │       │   │   ├── radiobutton_checked_disabled.svg
│   │   │       │   │   ├── radiobutton_unchecked.svg
│   │   │       │   │   ├── radiobutton_unchecked_disabled.svg
│   │   │       │   │   ├── right.svg
│   │   │       │   │   ├── right_disabled.svg
│   │   │       │   │   ├── sizegrip.svg
│   │   │       │   │   ├── text-editor.theme
│   │   │       │   │   ├── up.svg
│   │   │       │   │   ├── up_disabled.svg
│   │   │       │   │   └── web.css
│   │   │       │   ├── solarized-light
│   │   │       │   │   ├── arrow_dropdown.svg
│   │   │       │   │   ├── arrow_dropdown_disabled.svg
│   │   │       │   │   ├── branch_closed.svg
│   │   │       │   │   ├── branch_open.svg
│   │   │       │   │   ├── checkbox_checked.svg
│   │   │       │   │   ├── checkbox_checked_disabled.svg
│   │   │       │   │   ├── checkbox_unchecked.svg
│   │   │       │   │   ├── checkbox_unchecked_disabled.svg
│   │   │       │   │   ├── close.svg
│   │   │       │   │   ├── close_grey.svg
│   │   │       │   │   ├── cover.png
│   │   │       │   │   ├── down.svg
│   │   │       │   │   ├── down_disabled.svg
│   │   │       │   │   ├── float.svg
│   │   │       │   │   ├── highlight.css
│   │   │       │   │   ├── interface.qss
│   │   │       │   │   ├── left.svg
│   │   │       │   │   ├── left_disabled.svg
│   │   │       │   │   ├── menu_checkbox.svg
│   │   │       │   │   ├── menu_radiobutton.svg
│   │   │       │   │   ├── palette.json
│   │   │       │   │   ├── radiobutton_checked.svg
│   │   │       │   │   ├── radiobutton_checked_disabled.svg
│   │   │       │   │   ├── radiobutton_unchecked.svg
│   │   │       │   │   ├── radiobutton_unchecked_disabled.svg
│   │   │       │   │   ├── right.svg
│   │   │       │   │   ├── right_disabled.svg
│   │   │       │   │   ├── sizegrip.svg
│   │   │       │   │   ├── text-editor.theme
│   │   │       │   │   ├── up.svg
│   │   │       │   │   ├── up_disabled.svg
│   │   │       │   │   └── web.css
│   │   │       │   ├── vscode-dark
│   │   │       │   │   ├── arrow_dropdown.svg
│   │   │       │   │   ├── arrow_dropdown_disabled.svg
│   │   │       │   │   ├── branch_closed.svg
│   │   │       │   │   ├── branch_open.svg
│   │   │       │   │   ├── checkbox_checked.svg
│   │   │       │   │   ├── checkbox_checked_disabled.svg
│   │   │       │   │   ├── checkbox_unchecked.svg
│   │   │       │   │   ├── checkbox_unchecked_disabled.svg
│   │   │       │   │   ├── close.svg
│   │   │       │   │   ├── close_grey.svg
│   │   │       │   │   ├── cover.png
│   │   │       │   │   ├── down.svg
│   │   │       │   │   ├── down_disabled.svg
│   │   │       │   │   ├── float.svg
│   │   │       │   │   ├── highlight.css
│   │   │       │   │   ├── interface.qss
│   │   │       │   │   ├── left.svg
│   │   │       │   │   ├── left_disabled.svg
│   │   │       │   │   ├── menu_checkbox.svg
│   │   │       │   │   ├── menu_radiobutton.svg
│   │   │       │   │   ├── palette.json
│   │   │       │   │   ├── radiobutton_checked.svg
│   │   │       │   │   ├── radiobutton_checked_disabled.svg
│   │   │       │   │   ├── radiobutton_unchecked.svg
│   │   │       │   │   ├── radiobutton_unchecked_disabled.svg
│   │   │       │   │   ├── readme.md
│   │   │       │   │   ├── right.svg
│   │   │       │   │   ├── right_disabled.svg
│   │   │       │   │   ├── sizegrip.svg
│   │   │       │   │   ├── text-editor.theme
│   │   │       │   │   ├── up.svg
│   │   │       │   │   ├── up_disabled.svg
│   │   │       │   │   └── web.css
│   │   │       │   └── vue-light
│   │   │       │       ├── arrow_dropdown.svg
│   │   │       │       ├── arrow_dropdown_disabled.svg
│   │   │       │       ├── branch_closed.svg
│   │   │       │       ├── branch_open.svg
│   │   │       │       ├── checkbox_checked.svg
│   │   │       │       ├── checkbox_checked_disabled.svg
│   │   │       │       ├── checkbox_unchecked.svg
│   │   │       │       ├── checkbox_unchecked_disabled.svg
│   │   │       │       ├── close.svg
│   │   │       │       ├── close_grey.svg
│   │   │       │       ├── cover.png
│   │   │       │       ├── down.svg
│   │   │       │       ├── down_disabled.svg
│   │   │       │       ├── float.svg
│   │   │       │       ├── highlight.css
│   │   │       │       ├── interface.qss
│   │   │       │       ├── left.svg
│   │   │       │       ├── left_disabled.svg
│   │   │       │       ├── menu_checkbox.svg
│   │   │       │       ├── menu_radiobutton.svg
│   │   │       │       ├── palette.json
│   │   │       │       ├── radiobutton_checked.svg
│   │   │       │       ├── radiobutton_checked_disabled.svg
│   │   │       │       ├── radiobutton_unchecked.svg
│   │   │       │       ├── radiobutton_unchecked_disabled.svg
│   │   │       │       ├── right.svg
│   │   │       │       ├── right_disabled.svg
│   │   │       │       ├── sizegrip.svg
│   │   │       │       ├── text-editor.theme
│   │   │       │       ├── up.svg
│   │   │       │       ├── up_disabled.svg
│   │   │       │       └── web.css
│   │   │       └── web
│   │   │           ├── css
│   │   │           │   ├── exportglobalstyles.css
│   │   │           │   ├── globalstyles.css
│   │   │           │   ├── imageviewer.css
│   │   │           │   ├── markdownit.css
│   │   │           │   ├── outline.css
│   │   │           │   └── user.css
│   │   │           ├── js
│   │   │           │   ├── computed-style-to-inline-style.js
│   │   │           │   ├── crosscopy.js
│   │   │           │   ├── easyaccess.js
│   │   │           │   ├── eventemitter.js
│   │   │           │   ├── flowchart.js
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── flowchart.min.js
│   │   │           │   │   └── raphael.min.js
│   │   │           │   ├── flowchartjs.js
│   │   │           │   ├── graphcache.js
│   │   │           │   ├── graphpreviewer.js
│   │   │           │   ├── graphrenderer.js
│   │   │           │   ├── graphviz.js
│   │   │           │   ├── imageviewer.js
│   │   │           │   ├── lrucache.js
│   │   │           │   ├── mark.js
│   │   │           │   │   ├── README.md
│   │   │           │   │   └── mark.min.js
│   │   │           │   ├── markdown-it
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── markdown-it-container.min.js
│   │   │           │   │   ├── markdown-it-emoji.min.js
│   │   │           │   │   ├── markdown-it-footnote.min.js
│   │   │           │   │   ├── markdown-it-front-matter.js
│   │   │           │   │   ├── markdown-it-implicit-figure.js
│   │   │           │   │   ├── markdown-it-imsize.min.js
│   │   │           │   │   ├── markdown-it-inject-linenumbers.js
│   │   │           │   │   ├── markdown-it-sub.min.js
│   │   │           │   │   ├── markdown-it-sup.min.js
│   │   │           │   │   ├── markdown-it-task-lists.js
│   │   │           │   │   ├── markdown-it-texmath.js
│   │   │           │   │   ├── markdown-it-xss.min.js
│   │   │           │   │   ├── markdown-it.min.js
│   │   │           │   │   ├── markdownItAnchor.umd.js
│   │   │           │   │   └── markdownItTocDoneRight.umd.js
│   │   │           │   ├── markdownit.js
│   │   │           │   ├── markdownviewer.js
│   │   │           │   ├── markjs.js
│   │   │           │   ├── mathjax.js
│   │   │           │   ├── mermaid
│   │   │           │   │   ├── README.md
│   │   │           │   │   └── mermaid.min.js
│   │   │           │   ├── mermaid.js
│   │   │           │   ├── mind-elixir
│   │   │           │   │   ├── MindElixir.min.js
│   │   │           │   │   ├── README.md
│   │   │           │   │   └── painter.js
│   │   │           │   ├── nodelinemapper.js
│   │   │           │   ├── outline.js
│   │   │           │   ├── plantuml
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── synchro2.js
│   │   │           │   │   └── zopfli.raw.min.js
│   │   │           │   ├── plantuml.js
│   │   │           │   ├── prism
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── clipboard.min.js
│   │   │           │   │   └── prism.min.js
│   │   │           │   ├── prism.js
│   │   │           │   ├── qwebchannel.js
│   │   │           │   ├── svg-to-image.js
│   │   │           │   ├── turndown
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── turndown-plugin-gfm.js
│   │   │           │   │   └── turndown.js
│   │   │           │   ├── turndown.js
│   │   │           │   ├── utils.js
│   │   │           │   ├── viz.js
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── lite.render.js
│   │   │           │   │   └── viz.js
│   │   │           │   ├── vnotex.js
│   │   │           │   ├── vxworker.js
│   │   │           │   ├── wavedrom
│   │   │           │   │   ├── README.md
│   │   │           │   │   ├── theme-default.js
│   │   │           │   │   └── wavedrom.min.js
│   │   │           │   └── wavedrom.js
│   │   │           ├── markdown-export-template.html
│   │   │           └── markdown-viewer-template.html
│   │   ├── export
│   │   │   ├── export.pri
│   │   │   ├── exportdata.cpp
│   │   │   ├── exportdata.h
│   │   │   ├── exporter.cpp
│   │   │   ├── exporter.h
│   │   │   ├── webviewexporter.cpp
│   │   │   └── webviewexporter.h
│   │   ├── fakeaccessible.cpp
│   │   ├── fakeaccessible.h
│   │   ├── imagehost
│   │   │   ├── giteeimagehost.cpp
│   │   │   ├── giteeimagehost.h
│   │   │   ├── githubimagehost.cpp
│   │   │   ├── githubimagehost.h
│   │   │   ├── imagehost.cpp
│   │   │   ├── imagehost.h
│   │   │   ├── imagehost.pri
│   │   │   ├── imagehostmgr.cpp
│   │   │   ├── imagehostmgr.h
│   │   │   ├── imagehostutils.cpp
│   │   │   ├── imagehostutils.h
│   │   │   ├── repoimagehost.cpp
│   │   │   └── repoimagehost.h
│   │   ├── main.cpp
│   │   ├── search
│   │   │   ├── filesearchengine.cpp
│   │   │   ├── filesearchengine.h
│   │   │   ├── isearchengine.h
│   │   │   ├── isearchinfoprovider.h
│   │   │   ├── search.pri
│   │   │   ├── searchdata.cpp
│   │   │   ├── searchdata.h
│   │   │   ├── searcher.cpp
│   │   │   ├── searcher.h
│   │   │   ├── searchhelper.cpp
│   │   │   ├── searchhelper.h
│   │   │   ├── searchresultitem.cpp
│   │   │   ├── searchresultitem.h
│   │   │   ├── searchtoken.cpp
│   │   │   └── searchtoken.h
│   │   ├── snippet
│   │   │   ├── dynamicsnippet.cpp
│   │   │   ├── dynamicsnippet.h
│   │   │   ├── snippet.cpp
│   │   │   ├── snippet.h
│   │   │   ├── snippet.pri
│   │   │   ├── snippetmgr.cpp
│   │   │   └── snippetmgr.h
│   │   ├── src.pro
│   │   ├── task
│   │   │   ├── shellexecution.cpp
│   │   │   ├── shellexecution.h
│   │   │   ├── task.cpp
│   │   │   ├── task.h
│   │   │   ├── task.pri
│   │   │   ├── taskmgr.cpp
│   │   │   ├── taskmgr.h
│   │   │   ├── taskvariablemgr.cpp
│   │   │   └── taskvariablemgr.h
│   │   ├── unitedentry
│   │   │   ├── entrypopup.cpp
│   │   │   ├── entrypopup.h
│   │   │   ├── entrywidgetfactory.cpp
│   │   │   ├── entrywidgetfactory.h
│   │   │   ├── findunitedentry.cpp
│   │   │   ├── findunitedentry.h
│   │   │   ├── helpunitedentry.cpp
│   │   │   ├── helpunitedentry.h
│   │   │   ├── iunitedentry.cpp
│   │   │   ├── iunitedentry.h
│   │   │   ├── unitedentry.cpp
│   │   │   ├── unitedentry.h
│   │   │   ├── unitedentry.pri
│   │   │   ├── unitedentryalias.cpp
│   │   │   ├── unitedentryalias.h
│   │   │   ├── unitedentryhelper.cpp
│   │   │   ├── unitedentryhelper.h
│   │   │   ├── unitedentrymgr.cpp
│   │   │   └── unitedentrymgr.h
│   │   ├── utils
│   │   │   ├── asyncworker.cpp
│   │   │   ├── asyncworker.h
│   │   │   ├── callbackpool.cpp
│   │   │   ├── callbackpool.h
│   │   │   ├── clipboardutils.cpp
│   │   │   ├── clipboardutils.h
│   │   │   ├── contentmediautils.cpp
│   │   │   ├── contentmediautils.h
│   │   │   ├── docsutils.cpp
│   │   │   ├── docsutils.h
│   │   │   ├── fileutils.cpp
│   │   │   ├── fileutils.h
│   │   │   ├── htmlutils.cpp
│   │   │   ├── htmlutils.h
│   │   │   ├── iconutils.cpp
│   │   │   ├── iconutils.h
│   │   │   ├── imageutils.cpp
│   │   │   ├── imageutils.h
│   │   │   ├── pathutils.cpp
│   │   │   ├── pathutils.h
│   │   │   ├── printutils.cpp
│   │   │   ├── printutils.h
│   │   │   ├── processutils.cpp
│   │   │   ├── processutils.h
│   │   │   ├── urldragdroputils.cpp
│   │   │   ├── urldragdroputils.h
│   │   │   ├── utils.cpp
│   │   │   ├── utils.h
│   │   │   ├── utils.pri
│   │   │   ├── webutils.cpp
│   │   │   ├── webutils.h
│   │   │   ├── widgetutils.cpp
│   │   │   └── widgetutils.h
│   │   └── widgets
│   │       ├── attachmentdragdropareaindicator.cpp
│   │       ├── attachmentdragdropareaindicator.h
│   │       ├── attachmentpopup.cpp
│   │       ├── attachmentpopup.h
│   │       ├── biaction.cpp
│   │       ├── biaction.h
│   │       ├── buttonpopup.cpp
│   │       ├── buttonpopup.h
│   │       ├── combobox.cpp
│   │       ├── combobox.h
│   │       ├── consoleviewer.cpp
│   │       ├── consoleviewer.h
│   │       ├── dialogs
│   │       │   ├── deleteconfirmdialog.cpp
│   │       │   ├── deleteconfirmdialog.h
│   │       │   ├── dialog.cpp
│   │       │   ├── dialog.h
│   │       │   ├── exportdialog.cpp
│   │       │   ├── exportdialog.h
│   │       │   ├── filepropertiesdialog.cpp
│   │       │   ├── filepropertiesdialog.h
│   │       │   ├── folderfilesfilterwidget.cpp
│   │       │   ├── folderfilesfilterwidget.h
│   │       │   ├── folderpropertiesdialog.cpp
│   │       │   ├── folderpropertiesdialog.h
│   │       │   ├── imageinsertdialog.cpp
│   │       │   ├── imageinsertdialog.h
│   │       │   ├── importfolderdialog.cpp
│   │       │   ├── importfolderdialog.h
│   │       │   ├── importfolderutils.cpp
│   │       │   ├── importfolderutils.h
│   │       │   ├── importlegacynotebookdialog.cpp
│   │       │   ├── importlegacynotebookdialog.h
│   │       │   ├── importnotebookdialog.cpp
│   │       │   ├── importnotebookdialog.h
│   │       │   ├── legacynotebookutils.cpp
│   │       │   ├── legacynotebookutils.h
│   │       │   ├── levellabelwithupbutton.cpp
│   │       │   ├── levellabelwithupbutton.h
│   │       │   ├── linkinsertdialog.cpp
│   │       │   ├── linkinsertdialog.h
│   │       │   ├── managenotebooksdialog.cpp
│   │       │   ├── managenotebooksdialog.h
│   │       │   ├── newfolderdialog.cpp
│   │       │   ├── newfolderdialog.h
│   │       │   ├── newnotebookdialog.cpp
│   │       │   ├── newnotebookdialog.h
│   │       │   ├── newnotebookfromfolderdialog.cpp
│   │       │   ├── newnotebookfromfolderdialog.h
│   │       │   ├── newnotedialog.cpp
│   │       │   ├── newnotedialog.h
│   │       │   ├── newsnippetdialog.cpp
│   │       │   ├── newsnippetdialog.h
│   │       │   ├── newtagdialog.cpp
│   │       │   ├── newtagdialog.h
│   │       │   ├── nodeinfowidget.cpp
│   │       │   ├── nodeinfowidget.h
│   │       │   ├── notebookinfowidget.cpp
│   │       │   ├── notebookinfowidget.h
│   │       │   ├── notepropertiesdialog.cpp
│   │       │   ├── notepropertiesdialog.h
│   │       │   ├── renametagdialog.cpp
│   │       │   ├── renametagdialog.h
│   │       │   ├── scrolldialog.cpp
│   │       │   ├── scrolldialog.h
│   │       │   ├── selectdialog.cpp
│   │       │   ├── selectdialog.h
│   │       │   ├── selectionitemwidget.cpp
│   │       │   ├── selectionitemwidget.h
│   │       │   ├── settings
│   │       │   │   ├── appearancepage.cpp
│   │       │   │   ├── appearancepage.h
│   │       │   │   ├── editorpage.cpp
│   │       │   │   ├── editorpage.h
│   │       │   │   ├── fileassociationpage.cpp
│   │       │   │   ├── fileassociationpage.h
│   │       │   │   ├── generalpage.cpp
│   │       │   │   ├── generalpage.h
│   │       │   │   ├── imagehostpage.cpp
│   │       │   │   ├── imagehostpage.h
│   │       │   │   ├── markdowneditorpage.cpp
│   │       │   │   ├── markdowneditorpage.h
│   │       │   │   ├── miscpage.cpp
│   │       │   │   ├── miscpage.h
│   │       │   │   ├── newimagehostdialog.cpp
│   │       │   │   ├── newimagehostdialog.h
│   │       │   │   ├── notemanagementpage.cpp
│   │       │   │   ├── notemanagementpage.h
│   │       │   │   ├── quickaccesspage.cpp
│   │       │   │   ├── quickaccesspage.h
│   │       │   │   ├── settingsdialog.cpp
│   │       │   │   ├── settingsdialog.h
│   │       │   │   ├── settingspage.cpp
│   │       │   │   ├── settingspage.h
│   │       │   │   ├── texteditorpage.cpp
│   │       │   │   ├── texteditorpage.h
│   │       │   │   ├── themepage.cpp
│   │       │   │   ├── themepage.h
│   │       │   │   ├── vipage.cpp
│   │       │   │   └── vipage.h
│   │       │   ├── snippetinfowidget.cpp
│   │       │   ├── snippetinfowidget.h
│   │       │   ├── snippetpropertiesdialog.cpp
│   │       │   ├── snippetpropertiesdialog.h
│   │       │   ├── sortdialog.cpp
│   │       │   ├── sortdialog.h
│   │       │   ├── tableinsertdialog.cpp
│   │       │   ├── tableinsertdialog.h
│   │       │   ├── updater.cpp
│   │       │   ├── updater.h
│   │       │   ├── viewtagsdialog.cpp
│   │       │   └── viewtagsdialog.h
│   │       ├── dockwidgethelper.cpp
│   │       ├── dockwidgethelper.h
│   │       ├── dragdropareaindicator.cpp
│   │       ├── dragdropareaindicator.h
│   │       ├── editors
│   │       │   ├── editormarkdownvieweradapter.cpp
│   │       │   ├── editormarkdownvieweradapter.h
│   │       │   ├── graphhelper.cpp
│   │       │   ├── graphhelper.h
│   │       │   ├── graphvizhelper.cpp
│   │       │   ├── graphvizhelper.h
│   │       │   ├── markdowneditor.cpp
│   │       │   ├── markdowneditor.h
│   │       │   ├── markdowntable.cpp
│   │       │   ├── markdowntable.h
│   │       │   ├── markdowntablehelper.cpp
│   │       │   ├── markdowntablehelper.h
│   │       │   ├── markdownviewer.cpp
│   │       │   ├── markdownviewer.h
│   │       │   ├── markdownvieweradapter.cpp
│   │       │   ├── markdownvieweradapter.h
│   │       │   ├── plantumlhelper.cpp
│   │       │   ├── plantumlhelper.h
│   │       │   ├── previewhelper.cpp
│   │       │   ├── previewhelper.h
│   │       │   ├── statuswidget.cpp
│   │       │   ├── statuswidget.h
│   │       │   ├── texteditor.cpp
│   │       │   └── texteditor.h
│   │       ├── editreaddiscardaction.cpp
│   │       ├── editreaddiscardaction.h
│   │       ├── filesystemviewer.cpp
│   │       ├── filesystemviewer.h
│   │       ├── findandreplacewidget.cpp
│   │       ├── findandreplacewidget.h
│   │       ├── floatingwidget.cpp
│   │       ├── floatingwidget.h
│   │       ├── framelessmainwindow
│   │       │   ├── framelessmainwindow.cpp
│   │       │   ├── framelessmainwindow.h
│   │       │   ├── framelessmainwindowimpl.h
│   │       │   ├── framelessmainwindowlinux.cpp
│   │       │   ├── framelessmainwindowlinux.h
│   │       │   ├── framelessmainwindowwin.cpp
│   │       │   └── framelessmainwindowwin.h
│   │       ├── fullscreentoggleaction.cpp
│   │       ├── fullscreentoggleaction.h
│   │       ├── historypanel.cpp
│   │       ├── historypanel.h
│   │       ├── itemproxystyle.cpp
│   │       ├── itemproxystyle.h
│   │       ├── labelwithbuttonswidget.cpp
│   │       ├── labelwithbuttonswidget.h
│   │       ├── lineedit.cpp
│   │       ├── lineedit.h
│   │       ├── lineeditdelegate.cpp
│   │       ├── lineeditdelegate.h
│   │       ├── lineeditwithsnippet.cpp
│   │       ├── lineeditwithsnippet.h
│   │       ├── listwidget.cpp
│   │       ├── listwidget.h
│   │       ├── locationinputwithbrowsebutton.cpp
│   │       ├── locationinputwithbrowsebutton.h
│   │       ├── locationlist.cpp
│   │       ├── locationlist.h
│   │       ├── mainwindow.cpp
│   │       ├── mainwindow.h
│   │       ├── markdownviewwindow.cpp
│   │       ├── markdownviewwindow.h
│   │       ├── messageboxhelper.cpp
│   │       ├── messageboxhelper.h
│   │       ├── navigationmode.cpp
│   │       ├── navigationmode.h
│   │       ├── navigationmodemgr.cpp
│   │       ├── navigationmodemgr.h
│   │       ├── navigationmodewrapper.h
│   │       ├── notebookexplorer.cpp
│   │       ├── notebookexplorer.h
│   │       ├── notebookexplorersession.cpp
│   │       ├── notebookexplorersession.h
│   │       ├── notebooknodeexplorer.cpp
│   │       ├── notebooknodeexplorer.h
│   │       ├── notebookselector.cpp
│   │       ├── notebookselector.h
│   │       ├── outlinepopup.cpp
│   │       ├── outlinepopup.h
│   │       ├── outlineprovider.cpp
│   │       ├── outlineprovider.h
│   │       ├── outlineviewer.cpp
│   │       ├── outlineviewer.h
│   │       ├── propertydefs.cpp
│   │       ├── propertydefs.h
│   │       ├── qtreewidgetstatecache.h
│   │       ├── quickselector.cpp
│   │       ├── quickselector.h
│   │       ├── searchinfoprovider.cpp
│   │       ├── searchinfoprovider.h
│   │       ├── searchpanel.cpp
│   │       ├── searchpanel.h
│   │       ├── simplesegmenthighlighter.cpp
│   │       ├── simplesegmenthighlighter.h
│   │       ├── snippetpanel.cpp
│   │       ├── snippetpanel.h
│   │       ├── statusbarhelper.cpp
│   │       ├── statusbarhelper.h
│   │       ├── styleditemdelegate.cpp
│   │       ├── styleditemdelegate.h
│   │       ├── systemtrayhelper.cpp
│   │       ├── systemtrayhelper.h
│   │       ├── tagexplorer.cpp
│   │       ├── tagexplorer.h
│   │       ├── tagpopup.cpp
│   │       ├── tagpopup.h
│   │       ├── tagviewer.cpp
│   │       ├── tagviewer.h
│   │       ├── textviewwindow.cpp
│   │       ├── textviewwindow.h
│   │       ├── textviewwindowhelper.h
│   │       ├── titlebar.cpp
│   │       ├── titlebar.h
│   │       ├── titletoolbar.cpp
│   │       ├── titletoolbar.h
│   │       ├── toolbarhelper.cpp
│   │       ├── toolbarhelper.h
│   │       ├── toolbox.cpp
│   │       ├── toolbox.h
│   │       ├── treeview.cpp
│   │       ├── treeview.h
│   │       ├── treewidget.cpp
│   │       ├── treewidget.h
│   │       ├── treewidgetitem.cpp
│   │       ├── treewidgetitem.h
│   │       ├── viewarea.cpp
│   │       ├── viewarea.h
│   │       ├── viewareasession.cpp
│   │       ├── viewareasession.h
│   │       ├── viewsplit.cpp
│   │       ├── viewsplit.h
│   │       ├── viewwindow.cpp
│   │       ├── viewwindow.h
│   │       ├── viewwindowsession.cpp
│   │       ├── viewwindowsession.h
│   │       ├── viewwindowtoolbarhelper.cpp
│   │       ├── viewwindowtoolbarhelper.h
│   │       ├── webpage.cpp
│   │       ├── webpage.h
│   │       ├── webviewer.cpp
│   │       ├── webviewer.h
│   │       ├── widgets.pri
│   │       ├── widgetsfactory.cpp
│   │       ├── widgetsfactory.h
│   │       ├── windowspanel.cpp
│   │       ├── windowspanel.h
│   │       ├── windowsprovider.cpp
│   │       ├── windowsprovider.h
│   │       ├── wordcountpopup.cpp
│   │       └── wordcountpopup.h
│   ├── tests
│   │   ├── common.pri
│   │   ├── commonfull.pri
│   │   ├── test_core
│   │   │   ├── test_core.pro
│   │   │   ├── test_notebook
│   │   │   │   ├── dummynode.cpp
│   │   │   │   ├── dummynode.h
│   │   │   │   ├── dummynotebook.cpp
│   │   │   │   ├── dummynotebook.h
│   │   │   │   ├── test_notebook.cpp
│   │   │   │   ├── test_notebook.h
│   │   │   │   ├── test_notebook.pro
│   │   │   │   ├── testnotebookdatabase.cpp
│   │   │   │   └── testnotebookdatabase.h
│   │   │   └── test_theme
│   │   │       ├── test_theme.cpp
│   │   │       ├── test_theme.h
│   │   │       └── test_theme.pro
│   │   ├── test_task
│   │   │   ├── test_task.cpp
│   │   │   ├── test_task.h
│   │   │   └── test_task.pro
│   │   ├── test_utils
│   │   │   ├── test_utils.cpp
│   │   │   ├── test_utils.h
│   │   │   └── test_utils.pro
│   │   └── tests.pro
│   └── vnote.pro
└── 说明.htm

73 directories, 1287 files


标签:

实例下载地址

VNote编辑器v3.15.0

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警