Skip to content

Some edits to "Using desktop IDEs" page and some notes about images #147

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# codenvy-docs

This repository houses documentation for Codenvy ([repo](https://github.com/codenvy/codenvy) / [site](https://codenvy.com/)). Content is held in markdown files in the `/src/main/_docs` directory. Images should be placed in `/src/main/_docs/assets/imgs`.
This repository houses documentation for Codenvy ([repo](https://github.com/codenvy/codenvy) / [site](https://codenvy.com/)). Content is held in markdown files in the `/src/main/_docs` directory. Images should be placed in `/src/main/_docs/assets/imgs/codenvy`.

Docs are built using Jekyll and the output is static HTML that is hosted at [codenvy.com/docs](https://codenvy.com/docs) and in the product at `{codenvy-domain}/docs`.

Expand All @@ -16,6 +16,9 @@ Because the docs are generated into static HTML linking to docs and images is a
- Link to a section in a docs page: `[Codenvy Factories]({{base}}/docs/integration-guide/workspace-automation/index.html#try-a-factory)`
- `#try-a-factory` is the section heading name with spaces replaced by dashes
- Link to an image: `![mypic.png]({{base}}/docs/assets/imgs/mypic.png)`
- Note: if you want to change image size do it via `style` attribute instead of `width` or `height` – in such way image sizes are not influenced by more general CSS rules. For example:

`![mypic.png]({{base}}/docs/assets/imgs/mypic.png){:style="width:400px"}`

# Editing Docs
[![Workspace](https://codenvy.io/factory/resources/codenvy-contribute.svg)](https://codenvy.io/f?url=https://github.com/codenvy/docs)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion src/main/_docs/user-guide/user-using-desktop-ides.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ permalink: /:categories/using-desktop-ides/
# Standard SSH Connection
It's possible to establish SSH connection between your desktop IDE and a remote Codenvy workspace.

In Codenvy create a new workspace, open it in the IDE and import any project in there. On the Consoles panel click `Connect via SSH`, you will see the following instructions:
In Codenvy create a new workspace, open it in the IDE and import any project in there. On the Consoles panel click `Connect via SSH`:

![user-using-desktop-ides-ssh.png]({{base}}/docs/assets/imgs/codenvy/user-using-desktop-ides-ssh.png){:style="width:400px"}

You will see the following instr

```shell
You can connect your SSH client to 'default' with:
Expand Down