Remove _target:blank annotations from links

They do not render correctly with GitBook. They are also redundant:
GitBook will automatically apply it to external links.


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/d7da958d
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/d7da958d
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/d7da958d

Branch: refs/heads/master
Commit: d7da958dc6a130079a55e085c1b804536b518eb1
Parents: 69804d8
Author: Richard Downer <[email protected]>
Authored: Tue Oct 10 13:50:37 2017 +0100
Committer: Thomas Bouron <[email protected]>
Committed: Mon Oct 16 14:56:02 2017 +0100

----------------------------------------------------------------------
 guide/start/blueprints.md | 12 ++++++------
 guide/start/managing.md   |  4 ++--
 guide/start/running.md    | 20 ++++++++++----------
 3 files changed, 18 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/d7da958d/guide/start/blueprints.md
----------------------------------------------------------------------
diff --git a/guide/start/blueprints.md b/guide/start/blueprints.md
index 8da9fc5..ee6ea50 100644
--- a/guide/start/blueprints.md
+++ b/guide/start/blueprints.md
@@ -3,11 +3,11 @@ title: Deploying Blueprints
 layout: website-normal
 ---
 
-Blueprints are descriptors or patterns which describe how Apache Brooklyn 
should deploy applications. Blueprints are written in 
[YAML](https://en.wikipedia.org/wiki/YAML){:target="_blank"} and many of the 
entities available are defined in the __[Brooklyn Catalog]({{ book.path.website 
}}/learnmore/catalog/)__.
+Blueprints are descriptors or patterns which describe how Apache Brooklyn 
should deploy applications. Blueprints are written in 
[YAML](https://en.wikipedia.org/wiki/YAML) and many of the entities available 
are defined in the __[Brooklyn Catalog]({{ book.path.website 
}}/learnmore/catalog/)__.
 
 ## Launching from a Blueprint
 
-We'll start by deploying an application with a simple YAML blueprint 
containing an [Apache Tomcat](https://tomcat.apache.org/){:target="_blank"} 
server.
+We'll start by deploying an application with a simple YAML blueprint 
containing an [Apache Tomcat](https://tomcat.apache.org/) server.
 
 Copy the blueprint below into a text file, "myapp.yaml", in your workspace 
(Note, to copy the file you can
 hover your mouse over the right side of the text box below to get a Javascript 
"copy" button).
@@ -63,9 +63,9 @@ location:
 </div>
 <div id="impl-2" class="tab-pane fade">
 
-Apache Brooklyn uses [Apcahe 
jclouds](http://jclouds.apache.org/){:target="_blank"} to support a range of 
cloud locations. More information on the range of providers and configurations 
is available [here]({{ book.path.guide }}/locations/#clouds){:target="_blank"}.
+Apache Brooklyn uses [Apcahe jclouds](http://jclouds.apache.org/) to support a 
range of cloud locations. More information on the range of providers and 
configurations is available [here]({{ book.path.guide }}/locations/#clouds).
 
-As an example, here is a configuration for [Amazon Web Services 
(AWS)](http://www.aws.amazon.com){:target="_blank"}. Swap the identity and 
credential with your AWS account details, then replace the location in your 
"myapp.yaml" with this.
+As an example, here is a configuration for [Amazon Web Services 
(AWS)](http://www.aws.amazon.com). Swap the identity and credential with your 
AWS account details, then replace the location in your "myapp.yaml" with this.
 
 ```yaml
 location:
@@ -77,7 +77,7 @@ location:
 </div>
 <div id="impl-3" class="tab-pane fade">
 
-The Bring Your Own Nodes (BYON) configuration allows Apache Brooklyn to make 
use of already available servers. These can be specified by a list of IP 
addresses with a user and password as shown below. More information including 
the full range of configuration options is available [here]({{ book.path.guide 
}}/locations/#byon){:target="_blank"}. 
+The Bring Your Own Nodes (BYON) configuration allows Apache Brooklyn to make 
use of already available servers. These can be specified by a list of IP 
addresses with a user and password as shown below. More information including 
the full range of configuration options is available [here]({{ book.path.guide 
}}/locations/#byon). 
 
 Replace the hosts, user and password in the example below with your own server 
details, then replace the location in your "myapp.yaml" with this.
 
@@ -107,7 +107,7 @@ First, log in to brooklyn with the command line interface 
(CLI) tool by typing:
 $ br login http://localhost:8081/
 ```
 
-To secure the Apache Brooklyn instance, you can add a username and password to 
Brooklyn's properties file, as described in the User Guide [here]({{ 
book.path.guide }}/ops/configuration/brooklyn_cfg.html){:target="_blank"}. 
+To secure the Apache Brooklyn instance, you can add a username and password to 
Brooklyn's properties file, as described in the User Guide [here]({{ 
book.path.guide }}/ops/configuration/brooklyn_cfg.html). 
 If this is configured, the login command will require an additional parameter 
for the userid and will then prompt for a password.
 
 Now you can create the application with the command below:

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/d7da958d/guide/start/managing.md
----------------------------------------------------------------------
diff --git a/guide/start/managing.md b/guide/start/managing.md
index 623997b..977cf47 100644
--- a/guide/start/managing.md
+++ b/guide/start/managing.md
@@ -37,7 +37,7 @@ $ br app
  hTPAF19s   Tomcat   RUNNING   ajVVAhER
 </pre>
 
-A full list of abbreviations such as this can be found in the [CLI reference 
guide]({{ book.path.guide 
}}/ops/cli/cli-ref-guide.html#abbreviations){:target="_blank"}.
+A full list of abbreviations such as this can be found in the [CLI reference 
guide]({{ book.path.guide }}/ops/cli/cli-ref-guide.html#abbreviations).
 
 In the above example the Id `hTPAF19s` and the Name `Tomcat` are shown. You 
can use either of these handles to monitor and control the application. The Id 
shown for your application will be different to this but the name should be the 
same, note that if you are running multiple applications the Name may not be 
unique.
 
@@ -277,7 +277,7 @@ These effectors can also be invoked by appending 
```invoke``` to this command. S
 
 These parameters can be supplied using ```--param parm=value``` or just ```-P 
parm=value```. 
 
-The commands below deploy the Apache Tomcat [hello world 
example](http://tomcat.apache.org/tomcat-6.0-doc/appdev/index.html){:target="_blank"}
 to our Tomcat Server. In these commands, a variable is created for the root 
URL using the appropriate
+The commands below deploy the Apache Tomcat [hello world 
example](http://tomcat.apache.org/tomcat-6.0-doc/appdev/index.html) to our 
Tomcat Server. In these commands, a variable is created for the root URL using 
the appropriate
 sensor and the index page html is displayed. 
 
 ```bash

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/d7da958d/guide/start/running.md
----------------------------------------------------------------------
diff --git a/guide/start/running.md b/guide/start/running.md
index c68b0d6..9672120 100644
--- a/guide/start/running.md
+++ b/guide/start/running.md
@@ -9,7 +9,7 @@ This guide will walk you through deploying an example 3-tier 
web application to
 
 Two methods of deployment are detailed in this tutorial, using virtualisation 
with Vagrant and an install in your own environment (such as your local machine 
or in your private/public cloud). 
 
-The latter assumes that you have a [Java Runtime Environment 
(JRE)](https://www.java.com){:target="_blank"} installed (version 7 or later), 
as Brooklyn is Java under the covers. 
+The latter assumes that you have a [Java Runtime Environment 
(JRE)](https://www.java.com) installed (version 7 or later), as Brooklyn is 
Java under the covers. 
 
 To get you up-and-running quickly, the Vagrant option will provision four 
compute nodes for you to deploy applications to. 
 
@@ -18,12 +18,12 @@ To get you up-and-running quickly, the Vagrant option will 
provision four comput
 {% method -%}
 
 {% sample lang="vagrant" -%}
-[Vagrant](https://www.vagrantup.com/){:target="_blank"} is a software package 
which automates the process of setting up virtual machines (VM) such as [Oracle 
VirtualBox](https://www.virtualbox.org){:target="_blank"}. We recommend it as 
the easiest way of getting started with Apache Brooklyn.
+[Vagrant](https://www.vagrantup.com/) is a software package which automates 
the process of setting up virtual machines (VM) such as [Oracle 
VirtualBox](https://www.virtualbox.org). We recommend it as the easiest way of 
getting started with Apache Brooklyn.
 
 Firstly, download and install:
 
- * [Vagrant](https://www.vagrantup.com/downloads.html){:target="_blank"}
- * [Oracle 
VirtualBox](https://www.virtualbox.org/wiki/Downloads){:target="_blank"}
+ * [Vagrant](https://www.vagrantup.com/downloads.html)
+ * [Oracle VirtualBox](https://www.virtualbox.org/wiki/Downloads)
  
 Then download the provided Apache Brooklyn vagrant configuration from
 {% if 'SNAPSHOT' in book.brooklyn_version %}
@@ -50,7 +50,7 @@ RPM is the de facto standard for packaging software on these 
Linux distributions
 {% if 'SNAPSHOT' in book.brooklyn_version %}
 This is a snapshot build and no RPM is available, please download [a different 
version]({{book.path.website}}/download/).
 {% else %}
-Download the Apache Brooklyn [RPM 
distribution](https://www.apache.org/dyn/closer.lua/brooklyn/apache-brooklyn-{{book.brooklyn_version}}/apache-brooklyn-{{book.brooklyn_version}}-1.noarch.rpm){:target="_blank"}.
+Download the Apache Brooklyn [RPM 
distribution](https://www.apache.org/dyn/closer.lua/brooklyn/apache-brooklyn-{{book.brooklyn_version}}/apache-brooklyn-{{book.brooklyn_version}}-1.noarch.rpm).
 {% endif %}
 
 Once downloaded, run the following shell command as root:
@@ -65,9 +65,9 @@ For Ubuntu and Debian users, the recommended way to install 
Apache Brooklyn is t
 The deb file is the de facto standard for packaging software on these Linux 
distributions and provides a mechanism for installing, upgrading and removing 
packages such as Apache Brooklyn. The deb package contains all the necessary 
files associated with the Apache Brooklyn application. 
 
 {% if 'SNAPSHOT' in book.brooklyn_version %}
-Download the Apache Brooklyn [deb 
distribution](https://repository.apache.org/service/local/artifact/maven/redirect?r=snapshots&g=org.apache.brooklyn&a=deb-packaging&v={{book.brooklyn_version}}&e=deb){:target="_blank"}.
+Download the Apache Brooklyn [deb 
distribution](https://repository.apache.org/service/local/artifact/maven/redirect?r=snapshots&g=org.apache.brooklyn&a=deb-packaging&v={{book.brooklyn_version}}&e=deb).
 {% else %}
-Download the Apache Brooklyn [deb 
distribution](https://www.apache.org/dyn/closer.lua/brooklyn/apache-brooklyn_{{book.brooklyn_version}}_noarch.deb){:target="_blank"}.
+Download the Apache Brooklyn [deb 
distribution](https://www.apache.org/dyn/closer.lua/brooklyn/apache-brooklyn_{{book.brooklyn_version}}_noarch.deb).
 {% endif %}
 
 Once downloaded, run the following shell command:
@@ -78,7 +78,7 @@ $ sudo dpkg -i 
apache-brooklyn_{{book.brooklyn_version}}_noarch.deb
 
 
 {% sample lang="osx" -%}
-For Linux or OSX please download the Apache Brooklyn `tar.gz` archive from the 
[download]({{book.path.website}}/download/){:target="_blank"} section.
+For Linux or OSX please download the Apache Brooklyn `tar.gz` archive from the 
[download]({{book.path.website}}/download/) section.
 
 {% if 'SNAPSHOT' in book.brooklyn_version %}
 Extract the `tar.gz` archive (note: as this is a -SNAPSHOT version, your 
filename will be slightly different):
@@ -100,7 +100,7 @@ $ cd apache-brooklyn-{{ book.brooklyn.version }}
 
 
 {% sample lang="windows" -%}
-For all versions of Microsoft Windows, please download the Apache Brooklyn zip 
file from [here]({{book.path.website}}/download/){:target="_blank"}. 
+For all versions of Microsoft Windows, please download the Apache Brooklyn zip 
file from [here]({{book.path.website}}/download/). 
 
 Extract this zip file to a directory on your computer such as `c:\Program 
Files\brooklyn` where `c` is the letter of your operating system drive.
 
@@ -184,7 +184,7 @@ address of the management interface:
 INFO  Started Brooklyn console at http://127.0.0.1:8081/, running 
classpath://brooklyn.war
 </pre>
 
-By default it can be accessed by opening 
[127.0.0.1:8081](http://127.0.0.1:8081){:target="_blank"} in your web browser.
+By default it can be accessed by opening 
[127.0.0.1:8081](http://127.0.0.1:8081) in your web browser.
 
 The rest of this getting started guide uses the Apache Brooklyn command line 
interface (CLI) tool, `br`. 
 This tool is both distributed with Apache Brooklyn or can be downloaded {% if 
'SNAPSHOT' in book.brooklyn_version %}

Reply via email to