AIMP Forum

AIMP for PC => Вопросы / Questions => Topic started by: farrukh on June 08, 2021, 14:15:59

Title: Tracklist export template is broken with adding '%' any solution?
Post by: farrukh on June 08, 2021, 14:15:59
Following is part of my template for exporting tracklist, i want to add % to width=100
should look like this:
width="100%" frameborder="0"

but when i add percentage symbol '%' it breaks the template and exported tracklist is incomplete. Kindly guide me how can i add this symbol to make it work properly.


<div class="list-group">
<div class="list-group-item active" style="font-size: 17px;"><center>Preview</center></div>
<iframe src="https://example.com/genre/song/id=" height="150px" width="100" frameborder="0"></iframe></p>


<div class="list-group">
<div class="list-group-item active" style="font-size: 17px;"><center>Tracks</center></div>
Title: Re: Tracklist export template is broken with adding '%' any solution?
Post by: CkopoxoD on June 08, 2021, 20:18:04
You can add any symbol by its code:
Code: [Select]
%Char(37)
Title: Re: Tracklist export template is broken with adding '%' any solution?
Post by: Artem on June 09, 2021, 11:00:24
% is reserved for macros. CkopoxoD is right, this is a workaround.
Title: Re: Tracklist export template is broken with adding '%' any solution?
Post by: farrukh on June 18, 2021, 18:12:37
Thank you so much brother 'CkopoxoD'. That worked.