You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optionally, you may include a title attribute in the parentheses. Hover on the link to see the title:
142
-
```
143
-
This is an [example link](http://example.com/ "With a Title").
144
-
```
145
-
This is an [example link](http://example.com/"With a Title").
146
-
147
148
Reference-style links allow you to refer to your links by names, which you define elsewhere in your document:
148
149
149
150
Markdown Input:
@@ -152,16 +153,16 @@ Markdown Input:
152
153
I get 10 times more traffic from [Google][1] than from
153
154
[Yahoo][2] or [MSN][3].
154
155
155
-
[1]: http://google.com/ "Google"
156
-
[2]: http://search.yahoo.com/ "Yahoo Search"
157
-
[3]: http://search.msn.com/ "MSN Search"
156
+
[1]: http://google.com/
157
+
[2]: http://search.yahoo.com/
158
+
[3]: http://search.msn.com/
158
159
```
159
160
160
161
Output:
161
162
162
163

163
164
164
-
The title attribute is optional. Link names may contain letters, numbers and spaces, but are not case sensitive:
165
+
Link names may contain letters, numbers and spaces, but are not case sensitive:
165
166
166
167
Markdown Input:
167
168
@@ -176,6 +177,26 @@ Output:
176
177
177
178

178
179
180
+
<br>
181
+
182
+
Links to section headings can be made as well. Every heading will get an ID based on the heading content, and prefixed with `user-content-`. A link can be made to a heading using the following markdown:
Go to the following web page to see which content types are available for syntax highlighting: https://github.com/jneen/rouge/tree/master/lib/rouge/demos.
220
-
221
237
### User mentions
222
238
You can mention a user by prefixing username with '@' symbol
223
239
224
240
Markdown Input:
225
241
226
242
```
227
-
@demo-member reported the issue
243
+
@demo-member reported the issue.
228
244
```
229
245
230
246
Output:
@@ -238,9 +254,26 @@ Output:
238
254
239
255
You can reference a report by prefixing report id with '#' symbol
CVE IDs, CWE IDs, and CAPEC IDs are automatically linked to MITRE:
269
+
270
+
```
271
+
CVE-2011-0242 could perhaps be categorized as CWE-79 of CAPEC-63.
242
272
```
243
-
[#105887](https://hackerone.com/reports/105887) is a publicly disclosed bug
273
+
274
+
Output:
275
+
276
+

244
277
245
278
### Attachment references
246
279
@@ -252,18 +285,14 @@ Example: Consider a user is creating a report and uploads an attachment. Once th
252
285
Now you can reference the attachment in the report by writing 'F1' and the attachment is referenced in the report as shown below.
253
286

254
287
255
-
When the link is clicked, the attachment is displayed in the modal.
256
-

257
-
258
288
### Inline images and video
259
289
260
290
You can inline images and videos in the report description, comments and report summary by writing the attachment reference id within curly braces (as in {F:id}).
0 commit comments