Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
how do we send table as pasted table using bot

  
  
Posted 2 years ago
Votes Newest

Answers


Officially, there is no support for this so you will not be able to get exactly the same format. However, wrapping your table around a div with class excel-table offers a similar look with the hover effects in Client 2.0, just without the responsive collapsing behaviour. (Note that this is not part of the documented MessageML specification and thus, is subject to breaking in the future).

<div class="excel-table">
  <table>
    <thead>
      <tr><th>ABC</th><th>DEF</th><th>GHI</th></tr>
    </thead>
    <tbody>
      <tr><td>123</td><td>456</td><td>789</td></tr>
      <tr><td>789</td><td>123</td><td>456</td></tr>
      <tr><td>456</td><td>123</td><td>789</td></tr>
    </tbody>
  </table>
</div>
  
  
Posted 2 years ago
Yong Sheng Tan
39 × 2 Administrator
2K Views
1 Answer
2 years ago
2 years ago
Tags