Skip to content

Commit

Permalink
cosmetics(CDL): Re-add line breaks in list (#366)
Browse files Browse the repository at this point in the history
It appears that someone removed the trailing double spaces in a list,
which in Markdown mean "line break". So let's make the line breaks
explicit here to avoid them being removed again.

Each line has a "heading" which a subsequent paragraph with more
details.
  • Loading branch information
bugwelle authored Aug 17, 2023
1 parent 2c42584 commit cb21352
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cds/cdl.md
Original file line number Diff line number Diff line change
Expand Up @@ -1624,11 +1624,11 @@ Imports in `cds` work very much like [`require` in Node.js](https://nodejs.org/a
In fact, we reuse **[Node's module loading mechanisms](https://nodejs.org/api/modules.html#modules_all_together)**.
Hence, the same rules apply:

- Relative path resolution
- Relative path resolution<br>
Names starting with `./` or `../` are resolved relative to the current model.
- Resolving absolute references
- Resolving absolute references<br>
Names starting with `/` are resolved absolute to the file system.
- Resolving module references
- Resolving module references<br>
Names starting with neither `.` nor `/` such as `@sap/cds/common` are fetched for in `node_modules` folders:
- Files having _.cds_, _.csn_, or _.json_ as suffixes, appended in order
- Folders, from either the file set in `cds.main` in the folder's _package.json_ or `index.<cds|csn|json>` file.
Expand Down

0 comments on commit cb21352

Please sign in to comment.