Skip to content

Commit 3c67910

Browse files
author
Ricardo Zambon
committed
fix: adjust to documents
1 parent 1d89cad commit 3c67910

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

details.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Azure DevOps Extension: Markdown Text Control
22

3-
Azure DevOps extension to show text field control and markdown in same row.
3+
<img src="./static/images/Example.png" style="border: 1px solid black;" />
44

5-
[Learn how to build your own custom control for the work item form.](https://www.visualstudio.com/en-us/docs/integrate/extensions/develop/custom-control)
5+
Azure DevOps extension to show text field control and markdown in same row.
66

77
## Extension Usage
88

9-
Navigate to your work item form customization page and add a markdown text control.
9+
Navigate to your work item form customization page, click to ***Add custom control*** and select the control **Markdown Text Control**.
1010

11-
[print]
11+
![Layout Customization](./static/images/Print1.jpg)
1212

13-
Edit the control so it can use the right field and markdown.
13+
In ***Options*** tab, set the control *field*, *markdown* and a *value converter script* (if required).
1414

15-
[print]
15+
![Configuration](./static/images/Print2.jpg)
1616

1717
* **Field** *(required)*: The field should be used by control;
1818

@@ -43,12 +43,12 @@ Edit the control so it can use the right field and markdown.
4343
4444
## Source code
4545
46-
The source for this extension can be found on Github - feel free to take, fork and extend.
46+
The [source](https://github.com/RicardoZambon/devops-markdown-text-control) for this extension can be found on Github - feel free to take, fork and extend.
4747
48-
You can also learn how to build your own custom control extension for the work item form here.
48+
You can also learn how to build your own custom control extension for the work item form [here](https://www.visualstudio.com/en-us/docs/integrate/extensions/develop/custom-control).
4949
5050
## Feedback
5151
We need your feedback! Here are some ways to connect with us:
5252
5353
* Add a review below.
54-
* Report issues in GitHub.
54+
* Report issues in [GitHub](https://github.com/RicardoZambon/devops-markdown-text-control).

static/images/Print1.jpg

75.8 KB
Loading

static/images/Print2.jpg

40.3 KB
Loading

vss-extension.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publisher": "Ricardo-Zambon",
55
"version": "0.0.0",
66
"name": "Markdown Text Control",
7-
"description": "A custom control to display markdown data",
7+
"description": "Extension to show text field control and markdown in same row",
88
"public": false,
99
"categories": [ "Azure Boards" ],
1010
"scopes": ["vso.work", "vso.work_write"],
@@ -50,7 +50,6 @@
5050
{
5151
"id": "FieldName",
5252
"name": "Field",
53-
"description": "The field associated with the control.",
5453
"type": "WorkItemField",
5554
"properties": {
5655
"workItemFieldTypes": ["String"]
@@ -63,7 +62,6 @@
6362
{
6463
"id": "Markdown",
6564
"name": "Markdown",
66-
"description": "Enter markdown",
6765
"inputMode": "TextArea",
6866
"validation": {
6967
"dataType": "String",
@@ -73,7 +71,6 @@
7371
{
7472
"id": "Script",
7573
"name": "Value Converter Script",
76-
"description": "Enter script",
7774
"inputMode": "TextArea",
7875
"validation": {
7976
"dataType": "String",

0 commit comments

Comments
 (0)