Job Description
for intro paragraphs and general text,
for section headers, - for list items. No CSS classes, no inline styles, no , no
. Must preserve all original content word-for-word, no addition, removal, summarizing, rephrasing. So we need to parse the given HTML input (which includes , ,
, , etc.) and produce HTML with only ,
, , - . Must preserve content exactly as is (including spaces? but we can ignore maybe convert to space). Must not add or remove content. Must not use
. Must not use . Must not use CSS classes.
We need to transform the given content into semantic HTML.
Given the input includes many tags with headings. We need to turn those headings into tags, and the content after them into
or
- as appropriate.
We must preserve all original content word-for-word. That means we cannot drop any text, including bullet symbols like "•". Those bullet characters should stay. We can wrap them in
- elements.
We need to decide which parts are lists. The sections like Education: have bullet points with •. Those should become
- . Similarly Global Experience Standards: bullet points. Key Performance Areas: subheadings like Sales Target Achievement: then bullet points. Also sub-subheadings like Customer Satisfaction (CSAT): then bullet points. Also Product Knowledge and Communication: bullet points. Field Sales and Market Engagement: bullet points. Operational Efficiency: bullet points. Adaptability and Collaboration: bullet points. Continuous Improvement: bullet points. Proficiency in Tools and Systems: bullet points.
We need to preserve the exact text, including the bullet characters and any punctuation.
We need to convert headings to
. For example:
Mission/ Core purpose of the Job:
The primary purpose...
Should become Mission/ Core purpose of the Job:
then a with the paragraph text (the sentence after the
). Also need to handle and
. We should replace with a space. Remove
tags (they are not allowed). The content after
should be part of same paragraph.
Similarly for Education:
Education:
•Matric or equivalent
•Fluent in English
Should become Education:
then - Matric or equivalent
- Fluent in English
. Need to preserve bullet characters? The bullet is "•". Should we keep it inside - ? Usually we would strip the bullet and let
- add its own bullet. But the instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. If we remove the bullet character, we are removing content. So we must keep the bullet character inside the
- text. However typical HTML list will show bullet plus the bullet character leading to double bullet. But we must follow instruction: preserve original content. So we keep the bullet character as part of the
- text.
Thus
- •Matric or equivalent
. Similarly for others.
We must not add any extra characters like spaces beyond original? We'll keep as is.
We need to ensure we don't add extra whitespace that changes content? Probably fine.
We must not use
. So we need to convert line breaks into appropriate block elements.
We need to parse the given HTML string. Let's extract the textual content with tags.
Given the input is a string containing HTML. We'll need to produce output HTML.
Let's manually rewrite.
Original:
Mission/ Core purpose of the Job:
The primary purpose of this role is to achieve sales targets that drive revenue growth and contribute to the company's overall success. The successful candidate will build strong customer relationships by understanding individual needs and providing tailored solutions that deliver value. Acting as a trusted advisor, you will guide customers throughout their purchasing journey with professionalism, integrity, empathy, and product expertise. Through exceptional customer service and a commitment to long-term relationship building, you will foster customer satisfaction, loyalty, and repeat business while consistently delivering outstanding sales results.
So after the heading, there is a paragraph text (two sentences? Actually it's a long paragraph). There's a
after the heading and then the paragraph text, then a
at end. We'll ignore
and .
Thus output:
Mission/ Core purpose of the Job:
The primary purpose of this role is to achieve sales targets that drive revenue growth and contribute to the company's overall success. The successful candidate will build strong customer relationships by understanding individual needs and providing tailored solutions that deliver value. Acting as a trusted advisor, you will guide customers throughout their purchasing journey with professionalism, integrity, empathy, and product expertise. Through exceptional customer service and a commitment to long-term relationship building, you will foster customer satisfaction, loyalty, and repeat business while consistently delivering outstanding sales results.
Note we removed the trailing
.
Next:
Education:
•Matric or equivalent
•Fluent in English
Thus:
Education:
- •Matric or equivalent
- •Fluent in English
Next:
Global Experience Standards:
•At least 3-5 years of sales experience in a similar role (inbound and outbound)
•Minimum 2 years’ recent experience in ISP sales
•Must be self-motivated and Target driven
•Must have excellent time management skills, positive attitude and be organized
•Understanding of sales processes and dynamics.
•A commitment to excellent customer service.
•Excellent English and Afrikaans written and verbal communication skills.
•Superb interpersonal skills, including the ability to quickly build rapport with customers.
•Computer literate with proficiency in MS Office Suite and Outlook, especially Excel
•Strong knowledge of fiber and broadband (LTE) products and services
•Excellent communication and interpersonal skills, with the ability to build rapport and trust with customers over the various communication channels (inbound calls, web chat, WA chat).
•Highly motivated and results-driven, with a passion for sales and a hunger to succeed in a dynamic and fast-paced environment.
•Ability to work independently with minimal supervision, as well as collaborate effectively within a team environment.
•Flexibility to work evenings and weekends as required to accommodate customer schedules and meet sales targets.
Thus:
Global Experience Standards:
- •At least 3-5 years of sales experience in a similar role (inbound and outbound)
- •Minimum 2 years’ recent experience in ISP sales
- •Must be self-motivated and Target driven
- •Must have excellent time management skills, positive attitude and be organized
- •Understanding of sales processes and dynamics.
- •A commitment to excellent customer service.
- •Excellent English and Afrikaans written and verbal communication skills.
- •Superb interpersonal skills, including the ability to quickly build rapport with customers.
- •Computer literate with proficiency in MS Office Suite and Outlook, especially Excel
- •Strong knowledge of fiber and broadband (LTE) products and services
- •Excellent communication and interpersonal skills, with the ability to build rapport and trust with customers over the various communication channels (inbound calls, web chat, WA chat).
- •Highly motivated and results-driven, with a passion for sales and a hunger to succeed in a dynamic and fast-paced environment.
- •Ability to work independently with minimal supervision, as well as collaborate effectively within a team environment.
- •Flexibility to work evenings and weekends as required to accommodate customer schedules and meet sales targets.
Note we removed after each bullet.
Next:
Key Performance Areas:
Thus heading with underline. We need to preserve the text exactly: "Key Performance Areas:" inside strong. The original content includes tags. We must preserve them? The instruction: preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. So we must keep the tags as part of the heading text. However we are converting the heading to . Should we keep the inside ? That would be Key Performance Areas:
. That preserves the tags. However we might also consider that and are not allowed? The instruction only restricts use of CSS classes, inline styles, ,
. It doesn't forbid other tags like or . It says use for introductory paragraphs and general text, use
for section headers, use - for list items. It doesn't forbid other tags inside those. So we can keep and inside
. That preserves original content.
Thus:
Key Performance Areas:
Then subsequent sections.
Next:
Sales Target Achievement:
•Consistently meet and exceed weekly, monthly, and annual sales targets.
•Convert leads into activated sales through outbound and inbound campaigns.
•Achieve and maintain a strong conversion rate.
Customer Satisfaction (CSAT):
•Build and maintain strong, long-lasting customer relationships by understanding their needs and effectively communicating the value proposition of products and services.
•Ensure high levels of customer satisfaction by providing accurate and timely information about product features, pricing, promotions, and terms of service.
•Maintain a very low monthly inflight cancellation rate to enhance customer satisfaction.
Product Knowledge and Communication:
•Demonstrate strong knowledge of fibre and broadband (LTE) products and services.
•Communicate effectively with customers over the phone and other communication channels, building rapport and trust.
We need to treat each bold heading as a subheading? The instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). It doesn't forbid using for subheadings inside a section. But we already used for the main section "Key Performance Areas". For subheadings like "Sales Target Achievement:", "Customer Satisfaction (CSAT):", "Product Knowledge and Communication:" we could also use or maybe treat them as
with . The instruction says use for section headers. It doesn't say we cannot use for subsections. But to keep semantic, we could use for each of those as they are headings. However the original content had them as inside a . We could convert them to
to follow the rule of using for section headers. That would preserve content (the text) but we would drop the tags. That would be removing original content (the tags). The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. If we remove tags, we are removing content. So we must keep them. However we could wrap the text inside but keep the tags. Eg Sales Target Achievement:
. That preserves the . That seems acceptable: we are using for section header, and inside we keep the original tags. That does not remove content.
Thus for each subheading we will output Sales Target Achievement:
then a for its bullet points. Then next subheading similarly.
But note there is a paragraph text "Customer Satisfaction (CSAT):" without a line break before? Actually after the bullet list of Sales Target Achievement, there is a line break then "Customer Satisfaction (CSAT):" as a bold heading? In the original: after the bullet "•Achieve and maintain a strong conversion rate.
Customer Satisfaction (CSAT):
•Build..." So there is no tag around "Customer Satisfaction (CSAT):". Actually the original text:
Sales Target Achievement:
•Consistently meet and exceed weekly, monthly, and annual sales targets.
•Convert leads into activated sales through outbound and inbound campaigns.
•Achieve and maintain a strong conversion rate.
Customer Satisfaction (CSAT):
•Build and maintain strong, long-lasting customer relationships by understanding their needs and effectively communicating the value proposition of products and services.
•Ensure high levels of customer satisfaction by providing accurate and timely information about product features, pricing, promotions, and terms of service.
•Maintain a very low monthly inflight cancellation rate to enhance customer satisfaction.
Product Knowledge and Communication:
•Demonstrate strong knowledge of fibre and broadband (LTE) products and services.
•Communicate effectively with customers over the phone and other communication channels, building rapport and trust.
Thus "Customer Satisfaction (CSAT):" is not wrapped in . It's just plain text followed by
. Similarly "Product Knowledge and Communication:" is not wrapped in . Actually it appears without as well. So we need to preserve that exactly. So we cannot add where not present. We could still wrap the whole line in but that would add tags not originally present, which is adding content (the tags). However the instruction says use for section headers. It doesn't forbid adding tags; it's about formatting. It says "Use for section headers". It doesn't say we cannot add tags where they weren't originally. The requirement to preserve original content word-for-word likely refers to the textual content, not the tags. We are allowed to change tags to semantic HTML. The instruction: "Your ONLY job is to format it as clean semantic HTML." So we can change tags. The preservation rule: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". That refers to the textual content, not the markup. So we can add ,
,
, - tags as needed, but we must not alter the text itself. So we can wrap headings in
even if they weren't originally. That's adding tags, not altering text. That's allowed.
Thus we can convert any heading line (the text ending with colon) to heading text. We must preserve the exact text (including any or tags if present). For those that had , we keep them inside . For those without, we just put the plain text inside .
Thus for "Customer Satisfaction (CSAT):" we output Customer Satisfaction (CSAT):
. For "Product Knowledge and Communication:" similarly.
Now we need to handle the bullet lists under each.
Thus after each heading we output - ... etc.
Now after that section, we have next main heading:
Field Sales and Market Engagement:
then bullet list.
Thus we output Field Sales and Market Engagement:
then etc.
Next: Operational Efficiency:
then bullet list.
Next: Adaptability and Collaboration:
then bullet list.
Next: Continuous Improvement:
then bullet list.
Next: Proficiency in Tools and Systems:
•Demonstrate proficiency in CRM software and Microsoft Office Suite (Word, Excel, Outlook) to manage sales activities effectively.
Thus heading with , then bullet list (single bullet) then a
.
Thus output Proficiency in Tools and Systems:
then - •Demonstrate proficiency in CRM software and Microsoft Office Suite (Word, Excel, Outlook) to manage sales activities effectively.
Now we need to ensure we didn't miss any text. Let's verify each section.
Original sections:
1. Mission/ Core purpose of the Job: (with paragraph)
2. Education:
3. Global Experience Standards:
4. Key Performance Areas: (with underline)
- Sales Target Achievement:
- Customer Satisfaction (CSAT):
- Product Knowledge and Communication:
- Field Sales and Market Engagement:
- Operational Efficiency:
- Adaptability and Collaboration:
- Continuous Improvement:
- Proficiency in Tools and Systems:
Check if any other text: after each heading there may be line breaks and .
Now we need to produce final HTML with only ,
, , - . No
. Ensure we close tags properly.
We'll produce:
Mission/ Core purpose of the Job:
The primary purpose of this role is to achieve sales targets that drive revenue growth and contribute to the company's overall success. The successful candidate will build strong customer relationships by understanding individual needs and providing tailored solutions that deliver value. Acting as a trusted advisor, you will guide customers throughout their purchasing journey with professionalism, integrity, empathy, and product expertise. Through exceptional customer service and a commitment to long-term relationship building, you will foster customer satisfaction, loyalty, and repeat business while consistently delivering outstanding sales results.
Education:
- •Matric or equivalent
- •
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 📝
. Must preserve all original content word-for-word, no addition, removal, summarizing, rephrasing. So we need to parse the given HTML input (which includes
, , , tags with headings. We need to turn those headings into or Mission/ Core purpose of the Job: with the paragraph text (the sentence after the Education: Mission/ Core purpose of the Job: The primary purpose of this role is to achieve sales targets that drive revenue growth and contribute to the company's overall success. The successful candidate will build strong customer relationships by understanding individual needs and providing tailored solutions that deliver value. Acting as a trusted advisor, you will guide customers throughout their purchasing journey with professionalism, integrity, empathy, and product expertise. Through exceptional customer service and a commitment to long-term relationship building, you will foster customer satisfaction, loyalty, and repeat business while consistently delivering outstanding sales results. Education: Global Experience Standards: Key Performance Areas: for introductory paragraphs and general text, use Sales Target Achievement: with . The instruction says use . We could convert them to Sales Target Achievement: , Field Sales and Market Engagement: Operational Efficiency: Adaptability and Collaboration: Continuous Improvement: Proficiency in Tools and Systems: , The primary purpose of this role is to achieve sales targets that drive revenue growth and contribute to the company's overall success. The successful candidate will build strong customer relationships by understanding individual needs and providing tailored solutions that deliver value. Acting as a trusted advisor, you will guide customers throughout their purchasing journey with professionalism, integrity, empathy, and product expertise. Through exceptional customer service and a commitment to long-term relationship building, you will foster customer satisfaction, loyalty, and repeat business while consistently delivering outstanding sales results.
, , etc.) and produce HTML with only ,
,
. Must not use tags, and the content after them into
. For example:
The primary purpose...Mission/ Core purpose of the Job:
then a
). Also need to handle and
. We should replace with a space. Remove
tags (they are not allowed). The content after
should be part of same paragraph.
Similarly for Education:
•Matric or equivalent
•Fluent in EnglishEducation:
then
. Need to preserve bullet characters? The bullet is "•". Should we keep it inside
. So we need to convert line breaks into appropriate block elements.
We need to parse the given HTML string. Let's extract the textual content with tags.
Given the input is a string containing HTML. We'll need to produce output HTML.
Let's manually rewrite.
Original:
The primary purpose of this role is to achieve sales targets that drive revenue growth and contribute to the company's overall success. The successful candidate will build strong customer relationships by understanding individual needs and providing tailored solutions that deliver value. Acting as a trusted advisor, you will guide customers throughout their purchasing journey with professionalism, integrity, empathy, and product expertise. Through exceptional customer service and a commitment to long-term relationship building, you will foster customer satisfaction, loyalty, and repeat business while consistently delivering outstanding sales results.
after the heading and then the paragraph text, then a
at end. We'll ignore
and .
Thus output:
Mission/ Core purpose of the Job:
.
Next:
•Matric or equivalent
•Fluent in EnglishEducation:
Next:
•At least 3-5 years of sales experience in a similar role (inbound and outbound)
•Minimum 2 years’ recent experience in ISP sales
•Must be self-motivated and Target driven
•Must have excellent time management skills, positive attitude and be organized
•Understanding of sales processes and dynamics.
•A commitment to excellent customer service.
•Excellent English and Afrikaans written and verbal communication skills.
•Superb interpersonal skills, including the ability to quickly build rapport with customers.
•Computer literate with proficiency in MS Office Suite and Outlook, especially Excel
•Strong knowledge of fiber and broadband (LTE) products and services
•Excellent communication and interpersonal skills, with the ability to build rapport and trust with customers over the various communication channels (inbound calls, web chat, WA chat).
•Highly motivated and results-driven, with a passion for sales and a hunger to succeed in a dynamic and fast-paced environment.
•Ability to work independently with minimal supervision, as well as collaborate effectively within a team environment.
•Flexibility to work evenings and weekends as required to accommodate customer schedules and meet sales targets.Global Experience Standards:
Note we removed after each bullet.
Next:
. Should we keep the inside
? That would be
Key Performance Areas:
. That preserves the tags. However we might also consider that and are not allowed? The instruction only restricts use of CSS classes, inline styles,
. It doesn't forbid other tags like or . It says use for section headers, use
. That preserves original content.
Thus:
Key Performance Areas:
Then subsequent sections.
Next:
•Consistently meet and exceed weekly, monthly, and annual sales targets.
•Convert leads into activated sales through outbound and inbound campaigns.
•Achieve and maintain a strong conversion rate.
Customer Satisfaction (CSAT):
•Build and maintain strong, long-lasting customer relationships by understanding their needs and effectively communicating the value proposition of products and services.
•Ensure high levels of customer satisfaction by providing accurate and timely information about product features, pricing, promotions, and terms of service.
•Maintain a very low monthly inflight cancellation rate to enhance customer satisfaction.
Product Knowledge and Communication:
•Demonstrate strong knowledge of fibre and broadband (LTE) products and services.
•Communicate effectively with customers over the phone and other communication channels, building rapport and trust. for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). It doesn't forbid using
for subheadings inside a section. But we already used
for the main section "Key Performance Areas". For subheadings like "Sales Target Achievement:", "Customer Satisfaction (CSAT):", "Product Knowledge and Communication:" we could also use
or maybe treat them as
for section headers. It doesn't say we cannot use
for subsections. But to keep semantic, we could use
for each of those as they are headings. However the original content had them as inside a
to follow the rule of using
for section headers. That would preserve content (the text) but we would drop the tags. That would be removing original content (the tags). The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. If we remove tags, we are removing content. So we must keep them. However we could wrap the text inside
but keep the tags. Eg
Sales Target Achievement:
. That preserves the . That seems acceptable: we are using for section header, and inside we keep the original tags. That does not remove content.
Thus for each subheading we will output
Sales Target Achievement:
then a for its bullet points. Then next subheading similarly.
But note there is a paragraph text "Customer Satisfaction (CSAT):" without a line break before? Actually after the bullet list of Sales Target Achievement, there is a line break then "Customer Satisfaction (CSAT):" as a bold heading? In the original: after the bullet "•Achieve and maintain a strong conversion rate.
Customer Satisfaction (CSAT):
•Build..." So there is no tag around "Customer Satisfaction (CSAT):". Actually the original text:
•Consistently meet and exceed weekly, monthly, and annual sales targets.
•Convert leads into activated sales through outbound and inbound campaigns.
•Achieve and maintain a strong conversion rate.
Customer Satisfaction (CSAT):
•Build and maintain strong, long-lasting customer relationships by understanding their needs and effectively communicating the value proposition of products and services.
•Ensure high levels of customer satisfaction by providing accurate and timely information about product features, pricing, promotions, and terms of service.
•Maintain a very low monthly inflight cancellation rate to enhance customer satisfaction.
Product Knowledge and Communication:
•Demonstrate strong knowledge of fibre and broadband (LTE) products and services.
•Communicate effectively with customers over the phone and other communication channels, building rapport and trust.
. Similarly "Product Knowledge and Communication:" is not wrapped in . Actually it appears without as well. So we need to preserve that exactly. So we cannot add where not present. We could still wrap the whole line in but that would add tags not originally present, which is adding content (the
tags). However the instruction says use
for section headers. It doesn't forbid adding
tags; it's about formatting. It says "Use
for section headers". It doesn't say we cannot add
tags where they weren't originally. The requirement to preserve original content word-for-word likely refers to the textual content, not the tags. We are allowed to change tags to semantic HTML. The instruction: "Your ONLY job is to format it as clean semantic HTML." So we can change tags. The preservation rule: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". That refers to the textual content, not the markup. So we can add
,
,
even if they weren't originally. That's adding tags, not altering text. That's allowed.
Thus we can convert any heading line (the text ending with colon) to
heading text. We must preserve the exact text (including any or tags if present). For those that had , we keep them inside
. For those without, we just put the plain text inside
.
Thus for "Customer Satisfaction (CSAT):" we output
Customer Satisfaction (CSAT):
. For "Product Knowledge and Communication:" similarly.
Now we need to handle the bullet lists under each.
Thus after each heading we output Field Sales and Market Engagement:
then etc.
Next:
•Demonstrate proficiency in CRM software and Microsoft Office Suite (Word, Excel, Outlook) to manage sales activities effectively.
.
Thus output Proficiency in Tools and Systems:
then
Now we need to ensure we didn't miss any text. Let's verify each section.
Original sections:
1. Mission/ Core purpose of the Job: (with paragraph)
2. Education:
3. Global Experience Standards:
4. Key Performance Areas: (with underline)
- Sales Target Achievement:
- Customer Satisfaction (CSAT):
- Product Knowledge and Communication:
- Field Sales and Market Engagement:
- Operational Efficiency:
- Adaptability and Collaboration:
- Continuous Improvement:
- Proficiency in Tools and Systems:
Check if any other text: after each heading there may be line breaks and .
Now we need to produce final HTML with only ,
,
. Ensure we close tags properly.
We'll produce:
Mission/ Core purpose of the Job:
Education:
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 📝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.
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.
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.