Skip to content

Commit

Permalink
feat(preview): add combine preview support (iamcco#611)
Browse files Browse the repository at this point in the history
* feat(preview): add combine preview support

* chore(build): update build
  • Loading branch information
iamcco authored Oct 14, 2023
1 parent b447564 commit 7546cdc
Show file tree
Hide file tree
Showing 14 changed files with 372 additions and 335 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,12 @@ let g:mkdp_filetypes = ['markdown']
" set default theme (dark or light)
" By default the theme is defined according to the preferences of the system
let g:mkdp_theme = 'dark'
" combine preview window
" default: 0
" if enable it will reuse previous opened preview window when you preview markdown file.
" ensure to set let g:mkdp_auto_close = 0 if you have enable this option
let g:mkdp_combine_preview = 0
```

Mappings:
Expand Down
2 changes: 1 addition & 1 deletion app/out/404.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html><head><meta charSet="utf-8" class="next-head"/><link rel="preload" href="/_next/static/vnn~NdstZBAsvW3751jap/pages/404.js" as="script"/><link rel="preload" href="/_next/static/vnn~NdstZBAsvW3751jap/pages/_app.js" as="script"/><link rel="preload" href="/_next/static/vnn~NdstZBAsvW3751jap/pages/_error.js" as="script"/><link rel="preload" href="/_next/static/runtime/webpack-2ef50c24cc8d478adafc.js" as="script"/><link rel="preload" href="/_next/static/chunks/commons.119f35d85a102df5128b.js" as="script"/><link rel="preload" href="/_next/static/runtime/main-8da5d12ae7a91791aefd.js" as="script"/></head><body><div id="__next"><div data-reactroot="">404</div></div><script>__NEXT_DATA__ = {"props":{"pageProps":{}},"page":"/404","query":{},"buildId":"vnn~NdstZBAsvW3751jap","nextExport":true};__NEXT_LOADED_PAGES__=[];__NEXT_REGISTER_PAGE=function(r,f){__NEXT_LOADED_PAGES__.push([r, f])}</script><script async="" id="__NEXT_PAGE__/404" src="/_next/static/vnn~NdstZBAsvW3751jap/pages/404.js"></script><script async="" id="__NEXT_PAGE__/_app" src="/_next/static/vnn~NdstZBAsvW3751jap/pages/_app.js"></script><script async="" id="__NEXT_PAGE__/_error" src="/_next/static/vnn~NdstZBAsvW3751jap/pages/_error.js"></script><script src="/_next/static/runtime/webpack-2ef50c24cc8d478adafc.js" async=""></script><script src="/_next/static/chunks/commons.119f35d85a102df5128b.js" async=""></script><script src="/_next/static/runtime/main-8da5d12ae7a91791aefd.js" async=""></script></body></html>
<!DOCTYPE html><html><head><meta charSet="utf-8" class="next-head"/><link rel="preload" href="/_next/static/9jY5KCdvN38izyS96wWJh/pages/404.js" as="script"/><link rel="preload" href="/_next/static/9jY5KCdvN38izyS96wWJh/pages/_app.js" as="script"/><link rel="preload" href="/_next/static/9jY5KCdvN38izyS96wWJh/pages/_error.js" as="script"/><link rel="preload" href="/_next/static/runtime/webpack-2ef50c24cc8d478adafc.js" as="script"/><link rel="preload" href="/_next/static/chunks/commons.eb02219a61ab5016dbbe.js" as="script"/><link rel="preload" href="/_next/static/runtime/main-3978781480e8c13aefab.js" as="script"/></head><body><div id="__next"><div data-reactroot="">404</div></div><script>__NEXT_DATA__ = {"props":{"pageProps":{}},"page":"/404","query":{},"buildId":"9jY5KCdvN38izyS96wWJh","nextExport":true};__NEXT_LOADED_PAGES__=[];__NEXT_REGISTER_PAGE=function(r,f){__NEXT_LOADED_PAGES__.push([r, f])}</script><script async="" id="__NEXT_PAGE__/404" src="/_next/static/9jY5KCdvN38izyS96wWJh/pages/404.js"></script><script async="" id="__NEXT_PAGE__/_app" src="/_next/static/9jY5KCdvN38izyS96wWJh/pages/_app.js"></script><script async="" id="__NEXT_PAGE__/_error" src="/_next/static/9jY5KCdvN38izyS96wWJh/pages/_error.js"></script><script src="/_next/static/runtime/webpack-2ef50c24cc8d478adafc.js" async=""></script><script src="/_next/static/chunks/commons.eb02219a61ab5016dbbe.js" async=""></script><script src="/_next/static/runtime/main-3978781480e8c13aefab.js" async=""></script></body></html>
1 change: 1 addition & 0 deletions app/out/_next/static/9jY5KCdvN38izyS96wWJh/pages/404.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

306 changes: 306 additions & 0 deletions app/out/_next/static/9jY5KCdvN38izyS96wWJh/pages/index.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit 7546cdc

Please sign in to comment.