View Single Post
Old 09-14-2022, 10:44 AM   #2
01100001
Enthusiast
01100001 began at the beginning.
 
Posts: 33
Karma: 10
Join Date: Sep 2022
Device: Microsoft Surface Pro 7, Apple iPad
My code blocks were missing li tags, here's me fixing that (not that it helped my situation, but it helps keep things clear):

Code:
program:
  before = '<ul>';
  after = '</ul>';
  j = '';
  for i in 'tags':
    j += '<li>' + i + '</li>';
  rof;
  before + j + after;
Code:
program: before = '<ul>'; after = '</ul>'; j = ''; for i in 'tags': j += '<li>' + i + '</li>'; rof; before + j + after;
I have also tried using field('tags') (instead of 'tags') and strcat(before, j, after); (instead of before + j + after;) in my code. Still same error.
01100001 is offline   Reply With Quote