MicrosoftPremier / VstsExtensions

Documentation and issue tracking for Microsoft Premier Services Visual Studio Team Services Extensions
MIT License
56 stars 14 forks source link

Allow formatting of fieldMappings #203

Closed KazMiddelhoek closed 11 months ago

KazMiddelhoek commented 1 year ago

Describe the context

Describe the problem and expected behavior Allow for formatting of the description. To set a description of the task, we use: fieldMappings: > Description=... It would be great if we could use formatting for the description, i.e., new-lines, identation etc. Adding new-lines to the fieldmapping makes the rest of the description unvisible (I assume it tries to parse the next field mapping).

Attention: The log file may contain sensitive data (e.g., server or organization names, project names, variable information). Please do not attach the log to your GitHub issue and or remove the information from the log file before attaching or sending.

ReneSchumacher commented 1 year ago

Hi @KazMiddelhoek and happy new year!

Multiline fields in work items are HTML fields Thus, you can use formatting by using the correct HTML tags in your description. As an example, the following line creates a heading and an ordered list:

  fieldMappings: |
    Description=<h2>Important:</h2><ol><li>Use HTML syntax</li><li>Put everything in one line</li></ol>

Tbh, we only implemented a simple parsing mechanism for the field mappings. Allowing line breaks directly in YAML would require a more complicated parsing, especially if the field content contains something that could be seen as a field mapping. Unless there is a strong reason for not using a single line of HTML, I'd rather not spend too much time for reworking the field mapping parsing, as it would also require an updated task editor with multiline support.

ReneSchumacher commented 11 months ago

I'm closing this issue now since we didn't receive any additional feedback. Using HTML should support all formatting options.