'How can I write pipelines (|) inside tables in markdown?

I'd like to documentate my code using the simbol |(pipeline) inside a table. Is is possible in markdown without breaking the table structure?

Something like this:

| Text | Text | Text |
| :---: | :---: | :---: |
| || | some text here | blablabla |

As you can see below, the pipelines break the table in markdown, once it is used to demarcate the content inside the table. I'm trying to find a way of writing the pipelines in some formatting without breaking the table content: | Text | Text | Text | | :---: | :---: | :---: | | || | some text here | blablabla |

I've already tried some of the basic formatting, like:

`||`
```||```
*||*
**||**
***||***
<html>||</html>
<table struct in html>

And many others...



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source