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
Newman Version (can be found via newman -v): 3.8.3
OS details (type, version, and architecture): Win 10 Home
Are you using Newman as a library, or via the CLI? CLI
Did you encounter this recently, or has this bug always been there: always
Expected behaviour: markdown syntax formatted appropriately in newman html report.
Command / script used to run Newman:
newman run %collection% --environment %p_envir% --ssl-client-cert %p_cert% --ssl-client-key %p_key% --ssl-client-passphrase %pp% --reporters html
Sample collection, and auxilliary files (minus the sensitive details):
Screenshots (if applicable): N/A
Steps to reproduce the problem:
Edit collection description to include markdown. Example:
Functional Test Plan
=================================
Overview
Export the collection to the newman working directory
Run the newman script, as indicated in step 5.
Expected: html report displays markdown as html styles (like heading 1).
Actual: report shows markdown syntax instead of rendering as html tag format. example:
Description: Functional Test Plan ================================= Overview -------- executes a series of API level tests to verify the functional accuracy
The text was updated successfully, but these errors were encountered:
I was able to successfully apply markdown -> html transformations, in collection and requests descriptions, by implementing a workaround with the help of Remarkable.
Just take the default template used by newman and apply the following changes:
Add to <head> (provide different lib versions if necessary)
newman -v
): 3.8.3newman run %collection% --environment %p_envir% --ssl-client-cert %p_cert% --ssl-client-key %p_key% --ssl-client-passphrase %pp% --reporters html
Steps to reproduce the problem:
Functional Test Plan
=================================
Overview
Expected: html report displays markdown as html styles (like heading 1).
Actual: report shows markdown syntax instead of rendering as html tag format. example:
Description: Functional Test Plan ================================= Overview -------- executes a series of API level tests to verify the functional accuracy
The text was updated successfully, but these errors were encountered: