Skip to content

Compatibility template: remove empty row condition #209

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions en/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ h1, h2, h3, h4, h5, h6 { text-align: center; }
{% assign tools = site.data.compatibility | sort %}
{% for wrapped_tool in tools %}
{% assign tool = wrapped_tool[1] %}
<tr>
<td><a href="{{tool.internal_url}}#segwit">{{tool.name}}</a></td>
{% if tool.segwit %}

<tr>
<td><a href="{{tool.internal_url}}#segwit">{{tool.name}}</a></td>
{% assign segwit_receive_default = "" %}
{% assign segwit_receive_default_class = "default" %}
{% case tool.segwit.features.receive.default %}
Expand Down Expand Up @@ -72,10 +71,8 @@ h1, h2, h3, h4, h5, h6 { text-align: center; }
{% include functions/compat-cell.md state=tool.segwit.features.send.bech32 anchor="#segwit-send-bech32" %}
{% include functions/compat-cell.md state=tool.segwit.features.send.bech32_p2wsh anchor="#segwit-send-bech32_p2wsh" %}
{% include functions/compat-cell.md state=tool.segwit.features.send.change_bech32 anchor="#segwit-send-change_bech32" %}
{% else %}
<td colspan="7" class="default"></td>
</tr>
{% endif %}
</tr>
{% endfor %}

</table>
Expand Down