Embed list links
It seems like you might be asking for a way to create or format a list with embedded links. Here's an example of how you can do that in HTML:
```html
<ul>
<li><a href="https://www.example1.com">Example Link 1</a></li>
<li><a href="https://www.example2.com">Example Link 2</a></li>
<li><a href="https://www.example3.com">Example Link 3</a></li>
</ul>
```
If you want a Markdown format, it would look like this:
```
- [Example Link 1](https://www.example1.com)
- [Example Link 2](https://www.example2.com)
- [Example Link 3](https://www.example3.com)
```
If you meant something else by "embed list links," please provide more details, and I'll be glad to assist you!