What I mean: I DO NOT want to have to copy word by word into the cells; rather, the delimiter (, ; | or whatever) is where the borders go.
Do you need help with that? Adding a table to your cards? Or …?
( see post edit above )
I think what you’re saying is that you want to import a list of 10 comma-separated words into Anki, and have them display themselves as a 2 x 5 table on your cards.
The easiest way I can think of to do this –
- Setup your text file to have each word on its own, so it will be imported into a separate field on the note [ex:
a,b,c,d,e,f,g,h,i,j
]. Text Files - Anki Manual - Then, in Anki, setup your card template to build an HTML table with a field replacement in each cell.
- Field replacements: Field Replacements - Anki Manual
- HTML Tables: Learn how to make them at w3schools, or let a site like Tables Generator build it and format it for you.
Very plain example:
<table border=2px>
<tr>
<td>{{a}}</td>
<td>{{b}}</td>
<td>{{c}}</td>
<td>{{d}}</td>
<td>{{e}}</td>
</tr>
<tr>
<td>{{f}}</td>
<td>{{g}}</td>
<td>{{h}}</td>
<td>{{i}}</td>
<td>{{j}}</td>
</tr>
</table>
–which will create something like this
Thanks very much for your reply …
The solution is even simpler: so far, I’ve been using extended editor for field (for tables, search&replace, …); however …
… it is Add Table that offers what I need:
PS
One of these days I’ll try one those Markdown addons; surely they’ll also do the trick …
You’ll have to forgive me for making it more complicated. I assumed you had text like you posted it – in a text editor, and muc more of it – and were trying to create cards from that text.
If you just want to enter it as you go, there are other ways.
post must be at least 5 characters,
and theeeen …
Again, thanks very much for replying; I should’ve done a little bit more research before posting …
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.