c4c7ee17d5
Commits on Sep 12, 2021
-
mask yank cmds/shortcuts in visual editor
enbales ctrl+k to work as a keybaord shortcut for format -> link
-
Commits on Sep 11, 2021
Commits on Sep 10, 2021
-
Merge pull request #9835 from rstudio/bugfix/daily-link-encode
two changes to hopefully fix latest daily links
-
-
two changes to hopefully fix latest daily links
- url encode the + sign in the URLs before putting into .htaccess - add missing publish-daily-binary.sh for windows latest desktop exe
-
-
Commits on Sep 9, 2021
-
Merge pull request #9830 from rstudio/feature/visual-editor-tables
Improved handling of table markdown in visual editor
-
Improved handling of table markdown in visual editor
This commit encompasses several changes to the way we handle tables in the visual editor to hopefully provide more stable and predictable output: - We now actively prefer pipe tables to grid tables. This is because pipe tables will (mostly) allow HTML or LaTeX rendering engines to auto-size columns (unlike grid tables which fix column sizes based on markdown width, which can be very unreliable especially in the presence of links/images). Note that pipe tables will result in explicit column widths when the total markdown size is greater than `--columns` (which defaults to 80). You can work around this by specifying a very large value for `columns` (e.g. 10000). For quarto, you can do this with: ``` yaml columns: 10000 ``` For rmarkdown, you can do this with: ``` yaml output: html_document: pandoc_args: ["--columns", "10000"] ``` Note that you will still always get grid tables if you have cells with multiple blocks (as `grid_tables` are the the only table format that supports multiple blocks). You can also force the use of grid tables by disabling pipe tables. In quarto you do this with: ``` yaml from: markdown-pipe_tables ``` In rmarkdown you do this with: ``` yaml output: html_document: md_extensions: -pipe_tables ``` - To make it easier to migrate to a document that constrains editor table markdown output (e.g. to disable grid tables or force HTML tables) we now always read all table types from input documents (even if they are turned off for writing) - Table editing is now always enabled so long as `raw_html` is enabled. If `raw_html` is enabled and no table formats are available then tables will be read/written as HTML. If you want to force the use of html tables in the visual editor (e.g. b/c you want to precisely control relative columns widths) you can do this: ``` yaml editor_options: markdown: mode: markdown extensions: -grid_tables-pipe_tables-multiline_tables-simple_tables ``` Alternatively for quarto you can do this: ``` yaml from: markdown-pipe_tables-multiline_tables-simple_tables-grid_tables ``` Or for rmarkdown you can do this: ``` yaml output: html_document: md_extensions: -pipe_tables-multiline_tables-simple_tables-grid_tables ``` -
-
-
-
Merge pull request #9829 from rstudio/bugfix/no-col-statements
Future proof SQL for schema changes
-
-
-
-
disable ace language tools (autocomplete) for yaml
almost all results end up being incorrect so it's quite frustrating when this is enabled (it even interering with pressing enter at the end of a line waiting on an autocomplete selection)
-
-
Commits on Sep 8, 2021
Commits on Sep 7, 2021
Commits on Aug 31, 2021
Commits on Aug 30, 2021
-
Merge pull request #9794 from rstudio/feature/electron-forge-separate…
…-config-file move forge config into separate JS file (Electron)