Skip to content

[Bug]: Empty lines are not visible in ballerina langlib api docs examples #38963

Open
@LakshanWeerasinghe

Description

@LakshanWeerasinghe

Description

When we add an example for an api for readability purposes we keep empty lines.

table<Employee> key(id) employees = table [
       {name: "Jo", salary: 1200, id: 2121},
       {name: "Emma", salary: 800, id: 2122},
       {name: "John", salary: 1500, id: 2123}
 ];

 Employee[] employeeArray = employees.toArray();

 type Employee record {|
   readonly int id;
   string name;
   decimal salary;
 |};

Above code snippet should have two empty lines for toArray() api doc in table langlib. But when we generate the docs it is not visible.
Screenshot 2022-12-06 at 11 03 53

Steps to Reproduce

# Returns a list of all the members of a table.
#
# ```ballerina
# table<Employee> key(id) employees = table [
#       {name: "Jo", salary: 1200, id: 2121},
#       {name: "Emma", salary: 800, id: 2122},
#       {name: "John", salary: 1500, id: 2123}
# ];
#
# Employee[] employeeArray = employees.toArray();
#
# type Employee record {|
#   readonly int id;
#   string name;
#   decimal salary;
# |};
# ```
#
# + t - the table
# + return - an array whose members are the members of parameter `t`

Replace the above snippet with the existing documentation in toArray() api in the table langlib. Run below two commands.

cd langlib/lang.table/src/main/ballerina/

bal doc

Affected Version(s)

2201.3.0

Metadata

Metadata

Labels

Priority/HighTeam/DevToolsBallerina Developer Tooling ( CLI, Test FW, Package Management, OpenAPI, APIDocs )Type/Bug

Type

No type

Projects

Status

PR Sent

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions