Job Description
,
, - . Must preserve all original content word-for-word, no addition, removal, summarizing, rephrasing. So we need to extract the text content from the given HTML (which is messy) and then format it with appropriate tags.
We must not add or remove any content. So we need to keep exactly the same words, punctuation, etc. We can reformat using tags but cannot change the textual content.
We need to identify sections: KEY RESPONSIBILITIES, DAILY RESPONSIBILITIES, Academic & Professional Qualifications (with a table), Experience (tables). Also there is footnote about Need Types.
We need to preserve content exactly as appears, including the footnote text.
We need to convert lists to
- . For responsibilities items, they are currently in
- with spans. We need to output same text inside
- .
We need to use
for section headers: e.g., KEY RESPONSIBILITIES, DAILY RESPONSIBILITIES, Academic & Professional Qualifications, Experience, maybe also Need Types? But footnote is inside a div; we can keep as
.
We must not add any extra text like "Note:" etc. Must preserve original.
We need to strip all style attributes, classes, etc. Just output plain HTML tags.
We need to ensure we don't lose any content like the footnote reference [1] and its explanation.
Let's extract the textual content.
First part: KEY RESPONSIBILITIES: (with trailing non-breaking space?). The original: "KEY RESPONSIBILITIES: " So text: "KEY RESPONSIBILITIES:" followed by a non-breaking space. We should preserve that as a space? Probably just a space. We'll output as "KEY RESPONSIBILITIES:" inside
.
Then list items:
1. "Grow Assets Under Management (AUM), liabilities, investments, revenue, and overall portfolio profitability in line with agreed targets."
2. "Drive acquisition and retention of High Net Worth (HNW) and Ultra High Net Worth (UHNW) clients while increasing share of wallet within the portfolio."
3. "Develop and implement holistic wealth management and lifestyle solutions tailored to clients' personal, family, business, and lifestyle objectives, providing advisory support across investments, estate planning, luxury assets, exclusive experiences, and other bespoke Private Banking needs."
4. "Provide investment advisory services across local and international opportunities to support wealth creation and preservation."
5. "Advise clients on succession planning, estate planning, wealth structuring, and other long-term wealth preservation strategies."
6. "Serve as the primary trusted advisor by maintaining a deep understanding of clients' evolving financial needs and conducting regular portfolio reviews."
7. "Deliver proactive, insights-driven recommendations that respond to changing market conditions and client circumstances."
8. "Coordinate specialist expertise across investment, insurance, tax, and other advisory services to provide integrated wealth solutions."
9. "Generate new business opportunities through strategic networking, referral partnerships, and collaboration with Corporate and Commercial Banking teams."
10. "Ensure exceptional client service by coordinating end-to-end execution, advocating for clients' needs, and maintaining premium service standards"
Note: The last item missing a period? It ends with "standards". We'll keep as is.
Then after list, there is a
(empty). We can ignore empty paragraphs? The instruction: preserve ALL original content word-for-word. If we drop empty
, we are removing content (a non-breaking space). Might be considered content. But maybe we can keep it as
? However we are not allowed to use ? The instruction says use for paragraphs, but we can keep the entity? It says preserve ALL original content word-for-word. So we should keep the as is inside
. But we are not supposed to add any extra tags like
. Using is okay as it's part of content. We'll output
.
Then DAILY RESPONSIBILITIES: header.
List items:
1. "Manage and Grow High-Net-Worth Client Relationships: Conduct regular client visits, handle enquiries, understand client needs, and provide tailored banking, investment, and wealth management solutions."
Note: The strong tag inside the li. We need to preserve the strong tags? The instruction says preserve ALL original content word-for-word. So we must keep the tags inside the li? But we are only allowed to use ,
, - . No other tags like . However the instruction says "Use
for introductory paragraphs and general text. Use
for section headers. Use - for list items. No CSS classes, no inline styles, no s, no
tags". It does not explicitly forbid other tags like , but says "No CSS classes, no inline styles, no s, no
tags". It doesn't forbid . However earlier they said "Return ONLY the HTML. No markdown fences, no explanation, no preamble." They didn't say we cannot use other tags. But they said "Use for introductory paragraphs and general text. Use
for section headers. Use - for list items". That implies we should use those tags for those purposes, but we could still use other tags like if needed to preserve content. However they said "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". If we remove tags, we are removing content (the markup). So we should keep them. But the instruction about allowed tags may be a guideline, not a strict prohibition. However they explicitly said "No CSS classes, no inline styles, no s, no
tags". They didn't say no . So we can keep .
Thus we need to keep the inside the li.
Similarly there are other strong tags in Experience sections.
Thus we will output - containing the original inner HTML (including ). But we must strip any style attributes etc. However the original tags have no attributes besides maybe none. So fine.
Now after daily responsibilities list, there are
(two empty paragraphs with nbsp). We'll keep them.
Then "Academic & Professional Qualifications". Note the original: "Academic & Professional Qualifications" So text includes "&" which is HTML entity for &. We need to preserve that exactly. So header text: "Academic & Professional Qualifications". We'll put inside .
Then there is a
empty.
Then a figure with a table. We need to preserve the table content exactly, but we are not allowed to use or ? The instruction only mentions using ,
, - . It didn't say we cannot use
. However they said "No CSS classes, no inline styles, no s, no
tags". They didn't forbid . But they said "Use for introductory paragraphs and general text. Use
for section headers. Use - for list items". For tables, maybe we should keep them as is? But they said "Return ONLY the HTML. No markdown fences, no explanation, no preamble." They didn't say we cannot use tables. However the earlier instruction: "Your ONLY job is to format it as clean semantic HTML." Using tables for qualifications might be considered not semantic? But we could convert the table into
- lists? However that would change the structure and possibly content (though we could preserve the text). The instruction says preserve ALL original content word-for-word. If we convert table to list, we are not removing any text, just changing tags. That might be acceptable as long as we keep the same words. But we would be removing the table tags (
, , , ) which are part of original content. That would be removing content (the markup). The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. That likely refers to the textual content, not the markup. Usually in such tasks, they want to keep the text, not the original HTML tags. They want us to strip away all formatting and produce clean semantic HTML. So we can discard original tags like , etc, as long as we keep the textual content. However they said "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". That is ambiguous. In typical "clean semantic HTML" tasks, they mean keep the text content, not the original markup. They want us to remove all styling and produce semantic tags. So we can drop etc. But we must keep the textual content exactly, including any entities like &. So we need to convert & to &? Actually the original content includes the literal characters "&" as part of the text? In the source, it's "&" which when rendered shows "&". The original textual content likely is "Academic & Professional Qualifications". But the source shows the entity. If we output "Academic & Professional Qualifications" (with actual &), that is not word-for-word identical to the source (which had &). However the semantic meaning is same. Usually they'd accept the rendered text. But to be safe, we could keep the entity as is: "Academic & Professional Qualifications". That preserves the exact characters.
Thus we will output the text exactly as appears between tags, preserving entities.
Thus we need to extract the plain text from the given HTML, preserving entities. Let's do that manually.
We'll go through each section.
First, KEY RESPONSIBILITIES: header text: "KEY RESPONSIBILITIES:" plus a nbsp after colon. The nbsp is represented as . So we should output "KEY RESPONSIBILITIES "? Actually is the entity. To preserve word-for-word, we could output the entity . But in HTML, we can just put a space; but that changes the entity. Safer to output the entity as is: . However inside an we can write "KEY RESPONSIBILITIES " (the entity). That will be preserved.
Now list items: we need to extract the text inside each
- , preserving any internal markup like ? In the KEY RESPONSIBILITIES list, there are no inside li. So just plain text.
Let's copy each item exactly as appears between
- and
, stripping tags but keeping text.
Item1: "Grow Assets Under Management (AUM), liabilities, investments, revenue, and overall portfolio profitability in line with agreed targets." So text: "Grow Assets Under Management (AUM), liabilities, investments, revenue, and overall portfolio profitability in line with agreed targets."
Item2: "Drive acquisition and retention of High Net Worth (HNW) and Ultra High Net Worth (UHNW) clients while increasing share of wallet within the portfolio."
Item3: "Develop and implement holistic wealth management and lifestyle solutions tailored to clients' personal, family, business, and lifestyle objectives, providing advisory support across investments, estate planning, luxury assets, exclusive experiences, and other bespoke Private Banking needs.
" So text: "Develop and implement holistic wealth management and lifestyle solutions tailored to clients' personal, family, business, and lifestyle objectives, providing advisory support across investments, estate planning, luxury assets, exclusive experiences, and other bespoke Private Banking needs."
Item4: "Provide investment advisory services across local and international opportunities to support wealth creation and preservation."
Item5: "Advise clients on succession planning, estate planning, wealth structuring, and other long-term wealth preservation strategies."
Item6: "Serve as the primary trusted advisor by maintaining a deep understanding of clients' evolving financial needs and conducting regular portfolio reviews."
Item7: "Deliver proactive, insights-driven recommendations that respond to changing market conditions and client circumstances."
Item8: "Coordinate specialist expertise across investment, insurance, tax, and other advisory services to provide integrated wealth solutions."
Item9: "Generate new business opportunities through strategic networking, referral partnerships, and collaboration with Corporate and Commercial Banking teams."
Item10: "Ensure exceptional client service by coordinating end-to-end execution, advocating for clients' needs, and maintaining premium service standards" So text: "Ensure exceptional client service by coordinating end-to-end execution, advocating for clients' needs, and maintaining premium service standards"
Now after that list, there is
. We'll output
.
Then DAILY RESPONSIBILITIES: header text: "DAILY RESPONSIBILITIES:" plus after colon. So "DAILY RESPONSIBILITIES ".
List items:
Item1: "Manage and Grow High-Net-Worth Client Relationships: Conduct regular client visits, handle enquiries, understand client needs, and provide tailored banking, investment, and wealth management solutions." So text includes around "Manage and Grow High-Net-Worth Client Relationships". We'll keep that.
Thus item1 text: "Manage and Grow High-Net-Worth Client Relationships: Conduct regular client visits, handle enquiries, understand client needs, and provide tailored banking, investment, and wealth management solutions."
Item2: "Drive Private Banking Sales and Portfolio Growth: Identify opportunities to acquire new clients, deepen existing relationships, cross-sell relevant products, and grow assets under management and revenue." So: "Drive Private Banking Sales and Portfolio Growth: Identify opportunities to acquire new clients, deepen existing relationships, cross-sell relevant products, and grow assets under management and revenue."
Item3: "Monitor Client Experience and Service Delivery: Track customer journeys, resolve service issues, ensure timely fulfillment of requests, and enhance client satisfaction, engagement, and retention." => "Monitor Client Experience and Service Delivery: Track customer journeys, resolve service issues, ensure timely fulfillment of requests, and enhance client satisfaction, engagement, and retention."
Item4: "Analyse Client Insights and Recommend Solutions: Review customer behaviour, transactional trends, and market developments to identify opportunities and recommend appropriate financial products and services." => "Analyse Client Insights and Recommend Solutions: Review customer behaviour, transactional trends, and market developments to identify opportunities and recommend appropriate financial products and services."
Item5: "Coordinate Stakeholders and Ensure Compliance: Work closely with internal teams (Operations, Risk, Marketing, IT, and Product teams) and external partners to deliver client solutions while ensuring adherence to regulatory, compliance, and service standard" Note: ends with "service standard" missing "s"? We'll keep as is. So: "Coordinate Stakeholders and Ensure Compliance: Work closely with internal teams (Operations, Risk, Marketing, IT, and Product teams) and external partners to deliver client solutions while ensuring adherence to regulatory, compliance, and service standard"
After that list, there are
(two empty paragraphs). We'll output each.
Then "Academic & Professional Qualifications": header text includes &. So we output exactly that.
Then
empty.
Then the table for qualifications. We need to decide whether to keep table or convert to list. The instruction says use - for list items (duties, requirements, qualifications, skills). This suggests we should convert the qualifications table into a list. However the table contains two columns: Particulars, Detail, Need Type. The data rows: Education, Professional Qualifications, Master's Degree etc. The table also includes a footnote reference [1] and explanation later.
If we convert to list, we would lose the table structure but keep the textual content. The instruction says "Use
- for list items (duties, requirements, qualifications, skills)". So for qualifications, we should use
- . That seems appropriate.
Thus we need to extract the textual content from the table and present as list items, preserving the text exactly.
Let's extract the table rows.
First table (the one with Particulars, Detail, Need Type). It has a header row: Particulars, Detail, Need Type (with footnote reference [1] after Need Type). The header row includes a superscript link? Actually the Need Type cell contains "Need Type[1]" So the text includes "[1]" as a link. We need to preserve that text exactly, including the link? The link is an tag. If
Apply Now ↗
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️
Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝
My Job Concierge
Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost there
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHO
Your MJC Assistant
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
- . For responsibilities items, they are currently in
- with spans. We need to output same text inside
- .
We need to use
for section headers: e.g., KEY RESPONSIBILITIES, DAILY RESPONSIBILITIES, Academic & Professional Qualifications, Experience, maybe also Need Types? But footnote is inside a div; we can keep as
. We must not add any extra text like "Note:" etc. Must preserve original. We need to strip all style attributes, classes, etc. Just output plain HTML tags. We need to ensure we don't lose any content like the footnote reference [1] and its explanation. Let's extract the textual content. First part: KEY RESPONSIBILITIES: (with trailing non-breaking space?). The original: "KEY RESPONSIBILITIES: " So text: "KEY RESPONSIBILITIES:" followed by a non-breaking space. We should preserve that as a space? Probably just a space. We'll output as "KEY RESPONSIBILITIES:" inside
. Then list items: 1. "Grow Assets Under Management (AUM), liabilities, investments, revenue, and overall portfolio profitability in line with agreed targets." 2. "Drive acquisition and retention of High Net Worth (HNW) and Ultra High Net Worth (UHNW) clients while increasing share of wallet within the portfolio." 3. "Develop and implement holistic wealth management and lifestyle solutions tailored to clients' personal, family, business, and lifestyle objectives, providing advisory support across investments, estate planning, luxury assets, exclusive experiences, and other bespoke Private Banking needs." 4. "Provide investment advisory services across local and international opportunities to support wealth creation and preservation." 5. "Advise clients on succession planning, estate planning, wealth structuring, and other long-term wealth preservation strategies." 6. "Serve as the primary trusted advisor by maintaining a deep understanding of clients' evolving financial needs and conducting regular portfolio reviews." 7. "Deliver proactive, insights-driven recommendations that respond to changing market conditions and client circumstances." 8. "Coordinate specialist expertise across investment, insurance, tax, and other advisory services to provide integrated wealth solutions." 9. "Generate new business opportunities through strategic networking, referral partnerships, and collaboration with Corporate and Commercial Banking teams." 10. "Ensure exceptional client service by coordinating end-to-end execution, advocating for clients' needs, and maintaining premium service standards" Note: The last item missing a period? It ends with "standards". We'll keep as is. Then after list, there is a
(empty). We can ignore empty paragraphs? The instruction: preserve ALL original content word-for-word. If we drop empty
, we are removing content (a non-breaking space). Might be considered content. But maybe we can keep it as
? However we are not allowed to use ? The instruction says usefor paragraphs, but we can keep the entity? It says preserve ALL original content word-for-word. So we should keep the as is inside
. But we are not supposed to add any extra tags like
. Using is okay as it's part of content. We'll output
. Then DAILY RESPONSIBILITIES: header. List items: 1. "Manage and Grow High-Net-Worth Client Relationships: Conduct regular client visits, handle enquiries, understand client needs, and provide tailored banking, investment, and wealth management solutions." Note: The strong tag inside the li. We need to preserve the strong tags? The instruction says preserve ALL original content word-for-word. So we must keep the tags inside the li? But we are only allowed to use,
,
- . No other tags like . However the instruction says "Use
for introductory paragraphs and general text. Use
for section headers. Use
- for list items. No CSS classes, no inline styles, no s, no
tags". It does not explicitly forbid other tags like , but says "No CSS classes, no inline styles, nos, no
tags". It doesn't forbid . However earlier they said "Return ONLY the HTML. No markdown fences, no explanation, no preamble." They didn't say we cannot use other tags. But they said "Usefor introductory paragraphs and general text. Use
for section headers. Use
- for list items". That implies we should use those tags for those purposes, but we could still use other tags like if needed to preserve content. However they said "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". If we remove tags, we are removing content (the markup). So we should keep them. But the instruction about allowed tags may be a guideline, not a strict prohibition. However they explicitly said "No CSS classes, no inline styles, no s, no
tags". They didn't say no . So we can keep . Thus we need to keep the inside the li. Similarly there are other strong tags in Experience sections. Thus we will output- containing the original inner HTML (including ). But we must strip any style attributes etc. However the original tags have no attributes besides maybe none. So fine. Now after daily responsibilities list, there are
(two empty paragraphs with nbsp). We'll keep them. Then "Academic & Professional Qualifications". Note the original: "Academic & Professional Qualifications" So text includes "&" which is HTML entity for &. We need to preserve that exactly. So header text: "Academic & Professional Qualifications". We'll put inside. Then there is a
empty. Then a figure with a table. We need to preserve the table content exactly, but we are not allowed to useor? The instruction only mentions using
,
,
- . It didn't say we cannot use
. However they said "No CSS classes, no inline styles, no
s, no
tags". They didn't forbid. But they said "Use
for introductory paragraphs and general text. Use
for section headers. Use
- for list items". For tables, maybe we should keep them as is? But they said "Return ONLY the HTML. No markdown fences, no explanation, no preamble." They didn't say we cannot use tables. However the earlier instruction: "Your ONLY job is to format it as clean semantic HTML." Using tables for qualifications might be considered not semantic? But we could convert the table into
- lists? However that would change the structure and possibly content (though we could preserve the text). The instruction says preserve ALL original content word-for-word. If we convert table to list, we are not removing any text, just changing tags. That might be acceptable as long as we keep the same words. But we would be removing the table tags (
, ,
, ) which are part of original content. That would be removing content (the markup). The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. That likely refers to the textual content, not the markup. Usually in such tasks, they want to keep the text, not the original HTML tags. They want us to strip away all formatting and produce clean semantic HTML. So we can discard original tags like , etc, as long as we keep the textual content. However they said "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". That is ambiguous. In typical "clean semantic HTML" tasks, they mean keep the text content, not the original markup. They want us to remove all styling and produce semantic tags. So we can drop etc. But we must keep the textual content exactly, including any entities like &. So we need to convert & to &? Actually the original content includes the literal characters "&" as part of the text? In the source, it's "&" which when rendered shows "&". The original textual content likely is "Academic & Professional Qualifications". But the source shows the entity. If we output "Academic & Professional Qualifications" (with actual &), that is not word-for-word identical to the source (which had &). However the semantic meaning is same. Usually they'd accept the rendered text. But to be safe, we could keep the entity as is: "Academic & Professional Qualifications". That preserves the exact characters. Thus we will output the text exactly as appears between tags, preserving entities. Thus we need to extract the plain text from the given HTML, preserving entities. Let's do that manually. We'll go through each section. First, KEY RESPONSIBILITIES: header text: "KEY RESPONSIBILITIES:" plus a nbsp after colon. The nbsp is represented as . So we should output "KEY RESPONSIBILITIES "? Actually is the entity. To preserve word-for-word, we could output the entity . But in HTML, we can just put a space; but that changes the entity. Safer to output the entity as is: . However inside an
we can write "KEY RESPONSIBILITIES " (the entity). That will be preserved. Now list items: we need to extract the text inside each
- , preserving any internal markup like ? In the KEY RESPONSIBILITIES list, there are no inside li. So just plain text. Let's copy each item exactly as appears between
- and
, stripping tags but keeping text. Item1: "Grow Assets Under Management (AUM), liabilities, investments, revenue, and overall portfolio profitability in line with agreed targets." So text: "Grow Assets Under Management (AUM), liabilities, investments, revenue, and overall portfolio profitability in line with agreed targets." Item2: "Drive acquisition and retention of High Net Worth (HNW) and Ultra High Net Worth (UHNW) clients while increasing share of wallet within the portfolio." Item3: "Develop and implement holistic wealth management and lifestyle solutions tailored to clients' personal, family, business, and lifestyle objectives, providing advisory support across investments, estate planning, luxury assets, exclusive experiences, and other bespoke Private Banking needs.
" So text: "Develop and implement holistic wealth management and lifestyle solutions tailored to clients' personal, family, business, and lifestyle objectives, providing advisory support across investments, estate planning, luxury assets, exclusive experiences, and other bespoke Private Banking needs." Item4: "Provide investment advisory services across local and international opportunities to support wealth creation and preservation." Item5: "Advise clients on succession planning, estate planning, wealth structuring, and other long-term wealth preservation strategies." Item6: "Serve as the primary trusted advisor by maintaining a deep understanding of clients' evolving financial needs and conducting regular portfolio reviews." Item7: "Deliver proactive, insights-driven recommendations that respond to changing market conditions and client circumstances." Item8: "Coordinate specialist expertise across investment, insurance, tax, and other advisory services to provide integrated wealth solutions." Item9: "Generate new business opportunities through strategic networking, referral partnerships, and collaboration with Corporate and Commercial Banking teams." Item10: "Ensure exceptional client service by coordinating end-to-end execution, advocating for clients' needs, and maintaining premium service standards" So text: "Ensure exceptional client service by coordinating end-to-end execution, advocating for clients' needs, and maintaining premium service standards" Now after that list, there is
. We'll output
. Then DAILY RESPONSIBILITIES: header text: "DAILY RESPONSIBILITIES:" plus after colon. So "DAILY RESPONSIBILITIES ". List items: Item1: "Manage and Grow High-Net-Worth Client Relationships: Conduct regular client visits, handle enquiries, understand client needs, and provide tailored banking, investment, and wealth management solutions." So text includes around "Manage and Grow High-Net-Worth Client Relationships". We'll keep that. Thus item1 text: "Manage and Grow High-Net-Worth Client Relationships: Conduct regular client visits, handle enquiries, understand client needs, and provide tailored banking, investment, and wealth management solutions." Item2: "Drive Private Banking Sales and Portfolio Growth: Identify opportunities to acquire new clients, deepen existing relationships, cross-sell relevant products, and grow assets under management and revenue." So: "Drive Private Banking Sales and Portfolio Growth: Identify opportunities to acquire new clients, deepen existing relationships, cross-sell relevant products, and grow assets under management and revenue." Item3: "Monitor Client Experience and Service Delivery: Track customer journeys, resolve service issues, ensure timely fulfillment of requests, and enhance client satisfaction, engagement, and retention." => "Monitor Client Experience and Service Delivery: Track customer journeys, resolve service issues, ensure timely fulfillment of requests, and enhance client satisfaction, engagement, and retention." Item4: "Analyse Client Insights and Recommend Solutions: Review customer behaviour, transactional trends, and market developments to identify opportunities and recommend appropriate financial products and services." => "Analyse Client Insights and Recommend Solutions: Review customer behaviour, transactional trends, and market developments to identify opportunities and recommend appropriate financial products and services." Item5: "Coordinate Stakeholders and Ensure Compliance: Work closely with internal teams (Operations, Risk, Marketing, IT, and Product teams) and external partners to deliver client solutions while ensuring adherence to regulatory, compliance, and service standard" Note: ends with "service standard" missing "s"? We'll keep as is. So: "Coordinate Stakeholders and Ensure Compliance: Work closely with internal teams (Operations, Risk, Marketing, IT, and Product teams) and external partners to deliver client solutions while ensuring adherence to regulatory, compliance, and service standard" After that list, there are
(two empty paragraphs). We'll output each. Then "Academic & Professional Qualifications": header text includes &. So we output exactly that. Then
empty. Then the table for qualifications. We need to decide whether to keep table or convert to list. The instruction says use- for list items (duties, requirements, qualifications, skills). This suggests we should convert the qualifications table into a list. However the table contains two columns: Particulars, Detail, Need Type. The data rows: Education, Professional Qualifications, Master's Degree etc. The table also includes a footnote reference [1] and explanation later.
If we convert to list, we would lose the table structure but keep the textual content. The instruction says "Use
- for list items (duties, requirements, qualifications, skills)". So for qualifications, we should use
- . That seems appropriate.
Thus we need to extract the textual content from the table and present as list items, preserving the text exactly.
Let's extract the table rows.
First table (the one with Particulars, Detail, Need Type). It has a header row: Particulars, Detail, Need Type (with footnote reference [1] after Need Type). The header row includes a superscript link? Actually the Need Type cell contains "Need Type[1]" So the text includes "[1]" as a link. We need to preserve that text exactly, including the link? The link is an tag. If
Apply Now ↗
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝My Job ConciergeLet jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost thereAdd your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHOYour MJC AssistantI'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
- . That seems appropriate.
Thus we need to extract the textual content from the table and present as list items, preserving the text exactly.
Let's extract the table rows.
First table (the one with Particulars, Detail, Need Type). It has a header row: Particulars, Detail, Need Type (with footnote reference [1] after Need Type). The header row includes a superscript link? Actually the Need Type cell contains "Need Type[1]" So the text includes "[1]" as a link. We need to preserve that text exactly, including the link? The link is an tag. If
- for list items (duties, requirements, qualifications, skills)". So for qualifications, we should use
- , preserving any internal markup like ? In the KEY RESPONSIBILITIES list, there are no inside li. So just plain text. Let's copy each item exactly as appears between
- lists? However that would change the structure and possibly content (though we could preserve the text). The instruction says preserve ALL original content word-for-word. If we convert table to list, we are not removing any text, just changing tags. That might be acceptable as long as we keep the same words. But we would be removing the table tags (
- for list items". For tables, maybe we should keep them as is? But they said "Return ONLY the HTML. No markdown fences, no explanation, no preamble." They didn't say we cannot use tables. However the earlier instruction: "Your ONLY job is to format it as clean semantic HTML." Using tables for qualifications might be considered not semantic? But we could convert the table into
- containing the original inner HTML (including ). But we must strip any style attributes etc. However the original tags have no attributes besides maybe none. So fine. Now after daily responsibilities list, there are
- for list items". That implies we should use those tags for those purposes, but we could still use other tags like if needed to preserve content. However they said "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". If we remove tags, we are removing content (the markup). So we should keep them. But the instruction about allowed tags may be a guideline, not a strict prohibition. However they explicitly said "No CSS classes, no inline styles, no
- for list items. No CSS classes, no inline styles, no
- . No other tags like . However the instruction says "Use