Skip to content
Permalink
0086c2f961
Switch branches/tags

Commits on Sep 13, 2021

  1. hide spinners in table insert dialog

    spinners were advancing the number by 2
    jjallaire committed Sep 13, 2021

Commits on Sep 12, 2021

  1. mask yank cmds/shortcuts in visual editor

    enbales ctrl+k to work as a keybaord shortcut for format -> link
    jjallaire committed Sep 12, 2021

Commits on Sep 10, 2021

  1. Merge pull request #9835 from rstudio/bugfix/daily-link-encode

    two changes to hopefully fix latest daily links
    jeffvroom committed Sep 10, 2021
  2. 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
    jeffvroom committed Sep 10, 2021

Commits on Sep 9, 2021

  1. Merge pull request #9830 from rstudio/feature/visual-editor-tables

    Improved handling of table markdown in visual editor
    dragonstyle committed Sep 9, 2021
  2. 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
        ```
    jjallaire committed Sep 9, 2021
  3. Merge pull request #9829 from rstudio/bugfix/no-col-statements

    Future proof SQL for schema changes
    MariaSemple committed Sep 9, 2021
  4. 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)
    jjallaire committed Sep 9, 2021
  5. implement forward and back

    jjallaire committed Sep 9, 2021
Older